Cookbook/Compilers and interpreters
< Cookbook
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