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

link|improve this question

feedback

5 Answers

up vote 16 down vote accepted

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|improve this answer
3  
What exactly does Scala support that F# does not? – Jon Harrop Oct 24 '08 at 19:30
4  
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
@Calum: I agree with you but Denis wrote "has more of a concentration on supporting traditional OO in a way that F# doesn't" so I'm asking him to elaborate on what traditional OO Scala supports that F# does not. – Jon Harrop Aug 8 '10 at 9:55
2  
Fair enough point, Jon, although I still think that "supporting" doesn't necessarily just refer to making the features available; reducing the difficulties in using a paradigm is a form of support too. – Calum Aug 8 '10 at 11:55
feedback

One major difference between Scala and F# is in the expressiveness of their respective type systems. Whereas F#'s parametric polymorphism can only abstract over simple types, Scala's type system is able to express higher-kinded types, which is to say that it can abstract over both simple types and type constructors.

Of course this is not to say that Scala's type system is strictly better in all ways; F# has superior type inference.

link|improve this answer
The higher-kinded type link is broken - does anyone know of a new location? – Eamon Nerbonne Jul 25 '11 at 10:38
@Eamon: I've fixed the link, try now. – pelotom Jul 26 '11 at 17:39
thanks, I'll take a look... – Eamon Nerbonne Aug 24 '11 at 13:02
feedback

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) = x
C#: 
  T id<T>(T x) { return x; }
link|improve this answer
4  
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
2  
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
1  
I can confirm that. I wrote one program in Scala and ran into 5-6 compiler bugs. – mdm Nov 3 '09 at 0:40
@mdm: Can you please share that program with us? – missingfaktor Mar 27 '10 at 6:28
@Rahul G: I have to dig it up in my backups. I will push it to github.com/mdm/icfp2006. I don't remember the errors from the top of my hat, but I will look at the source code again. If you want to discuss further, leave me a message on github. – mdm Mar 27 '10 at 19:27
show 3 more comments
feedback

Here's a decent blog article on the subject

link|improve this answer
3  
@Downvoter, really? Care to add a reason? – JaredPar Aug 10 '09 at 16:54
feedback

According to a colleague who's spent some time looking into Scala (with a somewhat jaundiced eye), the first thing that leaps out at you is that you have to read about fifty pages of the reference manual before you are equipped to understand its syntax, let alone its semantics!

link|improve this answer
this is true for every language that has a greater level of expressability – scooterman May 9 '11 at 0:02
@scooterman: I disagree completely! I simply don't see how an increase in semantic expressive power requires a crazy syntax. There are many languages out there, at least as expressive as Scala, that manage the trick without playing mad syntax games. – Rafe May 9 '11 at 1:10
1  
scala itself doesn't have a crazy syntax; in fact you can write pretty and nice code using it. The DSL support (i.e., you could exchange () for {} ) on the language is what enables the possibility of a crazy syntax, but the language not requires it. I'm not myself a big fan of scala, exactly for this feature :( – scooterman Jul 14 '11 at 20:05
1  
Functional programming is a different paradigm to object-oriented programming, so an experienced OO programmer may feel frustration as a result of having to learn new basic concepts. By comparison, learning C# coming from java typically involves learning far fewer new concepts as java and c# are both OO languages. So your friend's jaded eye is probably just more of a lazy one. – david.barkhuizen Mar 21 at 5:21
feedback

Your Answer

 
or
required, but never shown

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