#scala
Read more stories on Hashnode
Articles with this tag
Variables Two kinds of variables: val (immutable, can't be reassigned once initialized) and var (mutable).// for comments. val two: Int = 2 var a:...