Sunday, August 28, 2016

Semicolon(;) is used to Separate statments

Semicolon(;) is used to Separate statements although it is Optional
scala> val no1:Int = 10;
no1: Int = 10

scala> val no2:Int = 10
no2: Int = 10

Ref : #73