Explains how to convert between data types
Conversion between variable types can be accomplished by "forcing" a type on a variable of another type. There are two syntaxes to make the conversion: functional syntax and the conversion operator.
someNum as Int = 23
someString as String
someString = String(someNum)
someString = String('now')
localTime as Time
localTime = Time("2002/01/20 17:39:23")
intNumber as Int
intNumber = Int("0001920")