Basic Scala
Variables
Two kinds of variables: val (immutable, can't be reassigned once initialized) and var (mutable).// for comments.
val two: Int = 2
var a: String = "massy"
// you can also use type inference
val one = 1
// println to print
println(one)
Fun...
massyfigini.hashnode.dev2 min read