(ascii string)
Convert the first character of str to ASCII.
This function converts the first character of the string to its numerical ASCII code.
Examples
| Code | Returns: |
|---|---|
| (ascii "X") | 88 |
| (ascii "x") | 120 |
| (ascii "Fun") | 70 |
| (ascii "FUN") | 70 |
Convert the first character of str to ASCII.
This function converts the first character of the string to its numerical ASCII code.
Examples
| Code | Returns: |
|---|---|
| (ascii "X") | 88 |
| (ascii "x") | 120 |
| (ascii "Fun") | 70 |
| (ascii "FUN") | 70 |