Variable Initialization

Variables are initialized by simply assigning a value to them. It may be useful to initialize a variable to the empty string. A special constant, named nil is used for that.

For example:

S = nil // s is set to the empty string
S = ""  // same thing