vote up 7 vote down star
2

I hear that F# is derived from OCaml. How true is this statement? That is to say, are the resources available for learning OCaml useful to someone who wants to learn F#? What are the major differences between the two languages (aside from the fact that F# is .NET)?

flag

9 Answers

vote up 14 vote down check

The main differences are that F# does not support:

  • functors
  • OCaml-style objects
  • polymorphic variants
  • the camlp4 preprocessor

In addition, F# has a different syntax for labeled and optional parameters.

In theory, OCaml programs that don't use these features can be compiled with F#. Learning OCaml is a perfectly reasonable introduction to F# (and vice versa, I'd imagine).

The complete list of differences is here.

link|flag
Is there a camlp4 equivalent for F#? – nlucaroni Oct 7 '08 at 20:53
Don't think so. But you could pipe your program through camlp4 and into the F# compiler, probably. (Wouldn't recommend it.) – Chris Conway Oct 7 '08 at 21:09
2  
F# does have named and optional arguments but it uses a different syntax and semantics. You will have trouble using Camlp4 with F# because F# is almost always indentation sensitive so it will need a new lexer and the Camlp4 documentation on lexers has remained unwritten for almost two years. – Jon Harrop Nov 14 '08 at 21:44
I fixed the reference to parameters. Thanks. – Chris Conway Nov 15 '08 at 2:15
vote up 1 vote down

With regards to cross-compilation, this is an example of a product that is cross-compiled as both OCaml and F#.

The blog on the site has a little bit about the cross-compiling experience.

link|flag
vote up 1 vote down

F# and OCaml are taxonimically classes in the ML family of languages, which includes a whole passle of other weird animals too. F# is newer than OCaml, and it doesn't have either functors [functions of module -> module] or row types [object classes and polymorphic variants] yet. Between them, those two simplifications probably make the learning curve easier for someone developing on the .Net platform. Sadly, those two language features are hugely powerful in OCaml, so reading the OCaml literature to gain insights into how to code for F# will probably lead to premature frustration with the latter when it's probably an excellent alternative to C# where both are available.

link|flag
vote up 0 vote down

if you look at the F#'s modules source code, you can find some ocaml files that are part of the (a few) F# utilities like the fsc.exe and so on. and almost all the basic programs in ocaml work in F#.

link|flag
vote up 0 vote down

Another comparison from the perspective of an OCaml developer so it's quite biased but useful nonetheless.

link|flag
vote up 9 vote down

I always describe F# as a cousin of OCaml because OCaml has many features that F# does not have and is never likely to get. F# is more closely related to the previous CAML language. In particular, F# has very limited support for abstraction and no support for structural typing (like OCaml's objects and polymorphic variants) at all.

Contrary to what some respondants have written, F# does have (limited) support for labeled ("named") and optional arguments.

However, these are all advanced features and you can certainly start getting to grips with the basic ideas behind small-scale OCaml-style functional programming using resources about OCaml. The first major difference you will discover is larger-scale problems like encapsulation and abstraction which are solved in completely different ways in OCaml and in F#. If you want to learn how to do that in F#, the only available literature is this article on purely functional data structures.

EDIT: I have since discovered that OCaml's wonderful module system makes it easy to parameterize code over types (such as data structures) but the OOP alternatives are not only hideous but almost entirely unused on .NET. Moreover, when trying to write elegantly-parameterized data structures I hit dozens of bugs in the F# compiler because nobody has even attempted to do this before. The F# stdlib does contain some nice data structure implementations but virtually no reuse, i.e. it is a cut'n'paste job.

Cheers, Jon Harrop.

link|flag
vote up 1 vote down

Anytime a new language is derived from another language there are going to be some differences. However, it's almost safe to say that F# is OCaml with the addition of .NET Framework libraries. Very similar to Boo and Python, A# and Ada, etc.

As Lou Franco said... the F# compiler will be able to compile most OCaml code using the #light directive in the code file.

link|flag
vote up 5 vote down

This page on the Microsoft Research site details the differences between F# and OCaml.

Aside from the relatively minor language differences, I imagine the largest issue would be learning to master the .NET libraries vs. the OCaml standard library.

link|flag
There are major languages differences and many are not described in Microsoft's document because they are features that F# does not even attempt to provide (and, in fact, will never be able to provide in some cases, e.g. -rectypes). – Jon Harrop Oct 24 '08 at 19:32
vote up 3 vote down

F# supports OCaml syntax directly. It might not be 100% compatible, but I think it's pretty close.

http://plus.kaist.ac.kr/~shoh/fsharp/html/index.html

Here is a list of differences (not sure how up-to-date it is)

http://plus.kaist.ac.kr/~shoh/fsharp/html/fsharp-vs-ocaml.html

link|flag

Your Answer

Get an OpenID
or

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