Basic Programming Constructs
As part of this topic lets get into Basic Programming Constructs in Scala. Declaring Variables Invoking Functions Conditional While loop For loop Declaring Variables in Scala We will use Scala REPL to explore variables in scala. Each and every variable in scala must be declared with either val or var val is immutable and var is …