| Ascii |
| Syntax |
Ascii(N:INT):STRING Ascii(L:LIST of INT):STRING Ascii(S:STRING):LIST of INT |
| Description |
| Example |
Ascii(97);
a
-------------------------------
C := Ascii("hello world");
C;
[104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100]
-------------------------------
Ascii(C);
hello world
-------------------------------
|