Numbers

...

Simple arithmetic

...

Converting to other types

Converting a number to a string is easy enough:

3 asString   
#=> "3"

However, integers are also used to represent bytes, which make up the characters in a string. To convert a byte to a character, use asCharacter:

97 asCharacter  
#=> "a"