chr()
Purpose
Returns the text character of a given unicode value.
Description
The character set used by FUZE4 Nintendo Switch is the official unicode standard.
Syntax
character = chr( number )
Arguments
character A positive number
number The returned text character
Example
// display each capital letter of the alphabet
a = 65
loop
clear()
print( chr( a ) )
a += 0.1
if a >= 91 then
a = 65
endif
update()
repeat
Associated Commands