/Scala

Repo to hold all Scala related work

Primary LanguageScala

Scala Documentation

  1. First Scala Program

  2. Class and Trait

  3. Mixin Class Composition - a scala class can inherit from more than 1 class. The first parent is called the superclass and the second parent is called mixin.

  4. Nested function - A function can be nested inside another function

  5. Higher order function - A function can be passed as parameter to another function

  6. Currying - All the parameters need not be passed at once. The remaining arguments can be passed later too.