search for:
ascii {...}
-- ASCII character conversion
Synopsis:
Usage:
s = ascii v
Function:
ascii
-- ASCII character conversion
Input:
v
, an instance of class
List
: a list of small integers
Output:
s
, an instance of class
String
: the string whose characters have the ASCII codes listed in
v
i1 : ascii {65,66,67}
o1 = ABC
i2 : ascii oo
o2 = {65, 66, 67}
o2 : List
See also:
ascii String
-- ASCII character conversion
search for: