
16 Dec
2005
16 Dec
'05
1:27 p.m.
Lemmih wrote:
On 12/16/05, Peter Eriksen
wrote: threadDelay (10*10^6)
10*10^6 == 10e6, btw.
But the types are different. For sake of completeness: (10*10^6, 10*10^^6, 10*10**6, 10e6) :: (Num a, Fractional b, Floating c, Fractional d) => (a, b, c, d) threadDelay wants an Int, so 10e6 won't work. Bertram