-
Notifications
You must be signed in to change notification settings - Fork 1
Escape Sequences
Frederik Tobner edited this page Dec 24, 2022
·
6 revisions
Cellox features the following escape sequences:
| Escape sequence | Description |
|---|---|
| \a | alarm bell |
| \b | backspace |
| \f | formfeed page break |
| \n | new line |
| \r | carriage return |
| \t | tab horizontal |
| \v | tab vertical |
| " | double quotes |
| ' | single quote |
| \ | backslash |
| ? | question mark |
| \nnn | escape sequence defiened by a numeric value (nnn) given in octal format |
| \xhh | escape sequence defiened by a numeric value (hh) given in hexadecimal format |