Scala

  1. Introduction to Statically Typed and Dynamically Inferred Language
  2. Variable declaration Immutable(val) and Mutable(var)
  3. Block Expression
    var z = { var x = 10; var y = 20; x + y}
  4. Scala IDE
    Scala Plugin in Eclipse
  5. Control Structure
    if
    if__else
    while
    for
    nested for
  6. Taking input from user
  7. Lazy programming
  8. Data Types
  9. Functions