vote up 10 vote down star
1

Could someone describe what are the differences between those two languages? Other that they target different VM of course ;)

flag

4 Answers

vote up 7 vote down check

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.

link|flag
1  
What exactly does Scala support that F# does not? – Jon Harrop Oct 24 '08 at 19:30
I don't think it's a matter of support, Jon (obviously you can model pretty much anything pretty much anywhere), but F# focusses more on the functional aspect than Scala, and Scala focusses more on the OO aspect than F#. It's just a different approach. – Calum Oct 30 '08 at 10:40
vote up 5 vote down

Here's a decent blog article on the subject

link|flag
1  
@Downvoter, really? Care to add a reason? – JaredPar Aug 10 at 16:54
vote up 4 vote down

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#: let id x = x
Sc: def id[a] (x : a) : a = x
C#: a id<a>(a x) { return x; }
link|flag
Actually, `def id[a] (x : a) = x` works too, but your sample is basically correct. F# has much more powerful type inference than Scala can ever hope to achieve due to Scala's OO underpinnings. – Daniel Spiewak Oct 19 '08 at 4:31
1  
Indeed. Scala also has weaker pattern match checking, (almost) no tail calls, poor documentation, no published books and a buggy compiler. – Jon Harrop Nov 6 '08 at 22:11
I can confirm that. I wrote one program in Scala and ran into 5-6 compiler bugs. – mdm Nov 3 at 0:40
vote up -10 vote down

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.

link|flag
4  
Somewhat slanted, don't you think? :-) While what you said is true in essence, the wording and selection of information is almost offensive. He asked for a compare-and-contrast, not a sales pitch. – Daniel Spiewak Oct 19 '08 at 4:29
2  
F# is a derivative of OCaml, which itself is a derivative of ML. As a pure-functional language of that bend, there is a fairly significant impedance mismatch between F# and other .NET libraries. The language designers did a good job smoothing this over, but it's still pretty evident at times. – Daniel Spiewak Oct 19 '08 at 6:57
5  
All in all, I think the part about your comment that I found the most unsettling was the way you phrased it. You glossed over the fact that F# too is highly experimental while putting undue emphasis on this aspect of Scala. As I said, it was a competitive sales pitch more than an even comparison. – Daniel Spiewak Oct 19 '08 at 7:01
7  
coding.derkeiler.com/Archive/Lisp/… "He has a long history with spamming and trolling." – sumek May 29 at 10:57
2  
@sumek: Ad hominem. You cannot refute any of the technical points I made so you resorted to a personal attack. – Jon Harrop May 29 at 15:17
show 9 more comments

Your Answer

Get an OpenID
or

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