Initial commit with a few basic files

This commit is contained in:
2024-10-19 21:08:09 +11:00
commit 655827f672
4 changed files with 97 additions and 0 deletions

40
docs/operators.md Normal file
View File

@@ -0,0 +1,40 @@
# Operators
The following table lists the recognized operators, and their uses.
| Symbol | Description |
| --- | --- |
| `+` | Add. TODO |
| `-` | Subtract. TODO |
| `*` | Multiply. TODO |
| `/` | Divide. TODO |
| `%` | Modulo. TODO |
| `=` | Assign. TODO |
| `+=` | Add Assign. TODO |
| `-=` | Subtract Assign. TODO |
| `*=` | Multiply Assign. TODO |
| `/=` | Divide Assign. TODO |
| `%=` | Modulo Assign. TODO |
| `++` | Increment. TODO |
| `--` | Decrement. TODO |
| `==` | Compare Equal. TODO |
| `!=` | Compare Not Equal. TODO |
| `<` | Compare Less. TODO |
| `<=` | Compare Less Equal. TODO |
| `>` | Compare Greater. TODO |
| `>=` | Compare Greater Equal. TODO |
| `(` `)` | Parenthesis. TODO |
| `[` `]` | Brackets. TODO |
| `{` `}` | Braces. TODO |
| `&&` | And. TODO |
| `\|\|` | Or. TODO |
| `!` | Not. TODO |
| `?` `:` | Ternary. TODO |
| `:` | Colon. TODO |
| `.` | Dot. TODO |
| `..` | Concatenate. TODO |
| `...` | Rest. TODO |
| `&` | Ampersand. Not used. |
| `\|` | Pipe. Not used. |