Constants and Variable Declarations
// Declare a constant named `a`.
//
let a = 1
// Invalid: re-assigning to a constant.
//
a = 2
// Declare a variable named `b`.
//
var b = 3
// Assign a new value to the variable named `b`.
//
b = 4// Invalid: the constant has no initial value.
//
let aLast updated