私はこの問題で立ち往生しており、私は Haskell に非常に慣れていません。次のコードで最初のオイラーの問題を完了しようとしていました:
main = putStrLn . show . sum $ [3,6..1000]:[5,10..1000]
エラーの最初の部分は次のとおりです。
euler/1.hs:1:19:
No instance for (Show t0) arising from a use of `show'
The type variable `t0' is ambiguous
Possible fix: add a type signature that fixes these type variable(s)
Note: there are several potential instances:
instance Show Double -- Defined in `GHC.Float'
instance Show Float -- Defined in `GHC.Float'
instance (Integral a, Show a) => Show (GHC.Real.Ratio a)
-- Defined in `GHC.Real'
...plus 23 others
In the first argument of `(.)', namely `show'
In the second argument of `(.)', namely `show . sum'
In the expression: putStrLn . show . sum