Cookbook/Compilers and interpreters: Difference between revisions
< Cookbook
(first step to turn this page from an arbitrary tutorial to a cookbook chapter) |
|||
Line 10: | Line 10: | ||
Prelude> :t "Hello" | Prelude> :t "Hello" | ||
"Hello" :: [Char] | "Hello" :: [Char] | ||
</haskell> | </haskell> |
Revision as of 08:11, 31 August 2009
GHC
GHCi
Checking Types
To check the type of an expression or function, use the command `:t'
Prelude> :t x
x :: Integer
Prelude> :t "Hello"
"Hello" :: [Char]