Y
Hacker News
new
|
ask
|
show
|
jobs
by
bobbylarrybobby
1723 days ago
Out of curiosity, what problems does Haskell's compiler(s) (I think it's really just GHC these days?) face that OCaml's doesn't?
1 comments
AzzieElbab
1723 days ago
speed. Ocaml compiler is probably as fast as Go one
link
pjmlp
1723 days ago
GHC has many backends and there is GHCi as well.
No need to always go through the slowest path.
link
Zababa
1723 days ago
The regular backend is the fastest according to their docs:
https://downloads.haskell.org/~ghc/latest/docs/html/users_gu...
. Having an interactive toplevel isn't a substitute for fast compilation (and OCaml has both).
link