Could someone describe what are the differences between those two languages? Other that they target different VM of course ;)
|
1
|
|
|
|
|
|
F# is a variant of ML -- as such it's very close to OCaml or SML. Scala is intended to be a new interface to java VM that has some features of ML, but has more of a concentration on supporting traditional OO in a way that F# doesn't. |
||||||
|
|
|
Here's a decent blog article on the subject |
||||
|
|
|
I've haven't used Scala, but from what I've seen, one major difference is that it has limited support for type inference and will not automatically add generic parameters. Instead, you're forced to calculate and annotate this explicitly, similarly to C# and other languages. Compare:
|
||||||||
|
|
|
F# is an industrial-strength language backed by Microsoft that draws only upon techniques that were tried and tested in the OCaml programming language. In terms of complexity, the experimental features of F# (active patterns, asynchronous workflows and units of measure) are very tame. Scala is a radical departure from previous languages that strives to address the impedance mismatch between OO and FP using radical new and completely-untested approaches. Scala is developed by a small team in Switzerland for the sole purpose of furthering academic research into programming language design. Consequently, F# is much more mature with much better tool support and far more high-quality documentation. Cheers, Jon Harrop. |
||||||||||||||||||||
|
