Difference between revisions of "Cookbook/Compilers and interpreters"

From HaskellWiki
Jump to navigation Jump to search
(TODO)
m
Line 17: Line 17:
 
"Hello" :: [Char]
 
"Hello" :: [Char]
 
</haskell>
 
</haskell>
|-
+
|}
   
 
== Hugs ==
 
== Hugs ==

Revision as of 08:20, 31 August 2009

GHC

TODO

GHCi

Problem Solution Examples
checking types :t
Prelude> :t "Hello"
"Hello" :: [Char]

Hugs

TODO