Cheatsheet/TACL: Difference between revisions
Appearance
Content deleted Content added
| Line 144: | Line 144: | ||
| '''{{key press|,}} || Comma || |
| '''{{key press|,}} || Comma || |
||
|- |
|- |
||
| '''{{key press|(}}''' || Left |
| '''{{key press|(}}''' || Left Parenthesis || |
||
|- |
|- |
||
| '''{{key press|)}}''' || Right |
| '''{{key press|)}}''' || Right Parenthesis || |
||
|- |
|- |
||
| '''{{key press|/}}''' || Slash || |
| '''{{key press|/}}''' || Slash || |
||
|- |
|- |
||
| '''{{key press|semicolon}}'''|| Semicolon || |
| '''{{key press|semicolon}}'''|| Semicolon || |
||
|- |
|- |
||
| '''{{key press|enter}}''' || carriage |
| '''{{key press|enter}}''' || carriage return|| Physical EOL |
||
|- |
|- |
||
| '''{{key press|~;}}''' || Tilde |
| '''{{key press|~;}}''' || Tilde Semicolon|| Logical EOL |
||
|- |
|- |
||
| '''{{key press|&}} || Ampersand |
| '''{{key press|&}} || Ampersand |
||
Revision as of 11:19, 2 May 2026
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 Semicolon | 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:
|