For this chapter, we are only going to concern ourselves with two keywords: val and var.
Variables of type val are immutable variables; once they are initialized, they can never be reassigned.
Variables of type var are mutable variables; they can be reassigned throughout their lifetime as long as they are valid.
We will discuss immutable and mutable variables in greater detail in the coming lessons.