On Fri, 2011-07-29 at 09:49 -0400, Jake Penton wrote: > For example, this does not compile: > > f :: Fractional a => a > f = 3.14 I can load this to ghci and also compile f :: Fractional a => a f = 3.14 main = print f with ghc and call the program to return 3.14. (ghc version 7.01) Cheers, Daniel.