views:

167

answers:

2

Do you know where to find good cheetsheet of Scala? except wellknown http://anyall.org/scalacheat/ I would prefer good DZone Refcard

+7  A: 

geek on the loose has a scala cheat-sheet in pdf to download

Nikolaus Gradwohl
+1  A: 

Hyperpolyglot has a 5-way reference sheet for Standard ML, OCaml, F#, Scala, and Haskell. They are all functional (or functionally-inspired) language, so they share common idioms.

For example cons:

1::[2,3]    1::[2;3]    1::[2;3]    1 :: List(2,3)    1 : [2,3]
eed3si9n