Tostring
From ComputerCraft Wiki
The ToString function is very common function through out programming languages. The use of this function is just to take an integer and turn it into a string. The opposite of this function is ToInteger.'
Example Use: A Lua Clock
time = os.getTime() TimeString = os.toString(time)
print(time)
Corrections and critism accepted!!