具體來說,我想做的事情是這樣的:當我嘗試加載此通過ghci
我得到如何爲Haskell的集合生成器表示法指定類型?
Warning: Defaulting the following constraint(s) to type `Integer'
`Integral t' arising from a use of `^' at myfunc.hs:76:20-22
所以我知道X顯然應該是一個Integer
myfunc:: [(Integer, Integer)]
myfunc = [(x^2 - y^2, 2 * x * y) | x <- [1..], y <- [1.. (x-1)]]
,我該怎麼辦繼續讓Haskell知道我想要什麼?
'[(x * x - y * y,....' – kennytm 2010-07-09 14:03:55