Computer Science Canada

Scala news

Author:  wtd [ Fri Jan 26, 2007 11:31 pm ]
Post subject:  Scala news

As of version 2.3.2, Scala's interactive interpreter now supports multi-line input. This is a huge step forward.

Author:  rizzix [ Wed Jun 20, 2007 9:14 pm ]
Post subject:  RE:Scala news

As of 2.6, Scala supports haskell-like structural subtyping Smile

Author:  wtd [ Thu Jun 21, 2007 2:21 am ]
Post subject:  RE:Scala news

I would compare it more evenly with O'Caml.

code:
let foo (bar : <baz : 'a; ..>) = bar#baz


code:
def foo[a](bar : Object { def baz: a }) = bar baz

Author:  wtd [ Tue Jul 31, 2007 3:07 pm ]
Post subject:  RE:Scala news

Scala 2.6.0 RC1 is now available.


: