Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Haskell: ghc Vs ghci


‘ghc’ compiles Haskell application to binary code, where as ghci is an interpret, where you can evaluate expressions and get results immediately.
$ ghci
GHCi, version 7.10.3: http://www.haskell.org/ghc/ :? for help
Prelude>
Prelude> 10 + 20
30
Prelude>
Prelude> 10 + 20 * 30
610


Previous                                                 Next                                                 Home


This post first appeared on Java Tutorial : Blog To Learn Java Programming, please read the originial post: here

Share the post

Haskell: ghc Vs ghci

×

Subscribe to Java Tutorial : Blog To Learn Java Programming

Get updates delivered right to your inbox!

Thank you for your subscription

×