Cookbook/Compilers and interpreters

From HaskellWiki
< Cookbook
Revision as of 08:25, 31 August 2009 by Lenny222 (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

GHC

TODO

GHCi

Problem Solution Examples
checking definitions :i
Prelude> :i length
length :: [a] -> Int    -- Defined in GHC.List
checking types :t
Prelude> :t "Hello"
"Hello" :: [Char]

Hugs

TODO