What's the keyword of choice to define a constant?
Nice! To declare a constant we use the val keyword. If we want to declare a mutable variable, we use the var keyword.
Whoops! To declare a constant we use the val keyword. If we want declare to a mutable variable, we use the var keyword.