Commands list:
savecode - shows a savecode you can copy and load later with loadcode [code]
touch, rm - create or delete files
texted - simple text editor
whoami, editmyname - shows your username and edits your username respectively
source - run code with the syntax below
F1 and F2 is to move the terminal up and down
| Command | Syntax | Description |
|---|---|---|
| var | var name = value | Creates a variable with a fixed value (number or string). |
| inc | inc var_name | Adds +1 to the variable's numerical value. |
| dec | dec var_name | Subtracts −1 from the variable's numerical value. |
| echo | echo text or echo /var_name | Prints text to the screen. Use a forward slash (/) to print a variable's value. |
| input | input var_name | Pauses the script and waits for the user to type something via keyboard. |
| if | if var == value command | If the variable equals the value, executes the trailing command. |
| goto | goto line_number | Jumps execution directly to the specified line number (backwards or forwards). |
| Dont forget to put 1 singular Enter after the end of the script! |