|
|
|
|
|
by TheAsprngHacker
2491 days ago
|
|
I know OCaml, but not F#. The most striking difference is that OCaml has the ML module system, where you can have functions from modules to modules. F# doesn't. Recent versions of OCaml now have features like first-class modules and binding operators. AFAIK F# has not added them. On the other hand, F# has features that OCaml doesn't, such as computation expressions, strongly typed units of measure, and active patterns. See https://stackoverflow.com/q/179492/8887578. |
|