mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
Initial commit with a few basic files
This commit is contained in:
40
docs/operators.md
Normal file
40
docs/operators.md
Normal 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. |
|
||||
|
||||
|
||||
Reference in New Issue
Block a user