There are differences between Hugs, Yhc and GHCi? If there are differences, What are they?

link|improve this question

feedback

4 Answers

up vote 9 down vote accepted

They are all just different implementations. I would try and explain the differences but this article does a much better job.

link|improve this answer
feedback

First: you want GHC/GHCi. And you want it via the Haskell Platform. Then, for more info on the other implementations of Haskell, read Bartek's link.

link|improve this answer
5  
Unless you're using any version of Mac OS X besides 10.5, in which case the default GHC/Haskell Platform install doesn't work right. – Chuck Nov 8 '09 at 22:47
feedback

Usually people use Hugs for small, testing-type prototypes (analogously to how Ruby users would use irb and Python users would use the interpreter), but for actual shipping code, GHC is by far the most popular target (analogous to how Python users would compile import modules to cpython).

They're all pretty much standards-compliant, its a matter of speed of performance vs speed of compilation.

(Dunno much about Yhc)

link|improve this answer
5  
GHCi has a better REPL than Hugs nowadays, BTW. – Chuck Nov 9 '09 at 11:17
feedback

These days people kind of converge to using GHC, as it's the de facto standard.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.