Lemmih wrote: > On 12/16/05, Peter Eriksen <[EMAIL PROTECTED]> 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 _______________________________________________ Haskell-Cafe mailing list [email protected] http://www.haskell.org/mailman/listinfo/haskell-cafe
