Variable Reassignment

By definition, the value represented by a variable may vary, or change, over time throughout the program:

var s: string = "Hello";
s = "goodbye";