Cheatsheet/TACL
Appearance
Tacl Cheatsheet
Commands
Tools
Meta Characters
| Character | verbal Names | Description | |
|---|---|---|---|
| * | Example | Example | Any Character(s) |
| ? | Example | Example | One Character |
| == | Double equal signs | Specifies a comment from the equal signs to EOL | |
| [ ] | Square brackets | Cause TACL to expand the enclosed text | |
| { } | Pair of braces | Specifies a label; used in #CASE, #DEF, #IF, and #LOOP functions | |
| | | | Pair of vertical lines | Specifies a label; used in #CASE, #DEF, #IF, and #LOOP functions | |
| ~ | Tilde | Changes the interpretation of the next character (or in the case of double equal signs two characters) |
Separators
| Character | verbal Names | Description |
|---|---|---|
| space bar | Space | |
| , | Comma | |
| ( | Left Parenthesis | |
| ) | Right Parenthesis | |
| / | Slash | |
| ; | Semicolon | |
| ↵ Enter | carriage return | Physical EOL |
| ~; | Tilde | Logical EOL |
| & | Ampersand | An ampersand & at the end of a line of TACL commands or function calls signals that the line continues on the next physical line. This continuation applies to executable statements and comments, with two exceptions:
|