Hacker News new | ask | show | jobs
by codygman 3981 days ago
I've heard quite the opposite. I've heard that GHC is state of the art in the depth and breadth of optimizations it can perform. I'm struggling to remember if the context was "of everything" or just within pure functional programming.
1 comments

GHC has great optimizations within the scope of modules (and seems to balance for the right level of polymorphism/modularity/linking), and can inline some things across module boundaries. But at the level of entire programs more advanced optimizations are possible; I gather there are tradeoffs too.

http://mlton.org/

https://www.reddit.com/r/haskell/comments/2tpmbo/what_on_ear...

http://stackoverflow.com/questions/4720499/possible-optimiza...

ML isn't that popular though right? Would it be fair to say GHC had the most impressive optimizations of mainstream language?

With that said I certainly wonder why ML isn't more popular!