-
Scala
Scala Wonderland: The functional style
Scala encourages to use a functional style of programming. For programmers coming from imperative world of Java or C# it…
Read More » -
Scala
Scala Wonderland: Lists
In functional style methods should not have side effects. A consequence of this philosophy is that List is immutable in…
Read More » -
Scala
Scala Wonderland: Semicolons, singletons and companion objects
In Scala you may usually omit semicolon at the end of a statement. It is required if more statements are…
Read More » -
Scala
Scala Wonderland: Case classes and pattern matching
Pattern matching is usually related to text search. In Scala it has much more sophisticated usage. You can write exciting…
Read More »