var
val
Define var a = 10. Now define a val b = a. Now assign 42 to a and display both a and b on different lines.
var a = 10
val b = a
42
a
b