Update 'Tokens'

Sasha Koshka 2022-08-25 04:09:37 +00:00
parent a3a448a70c
commit 45e3db6e41
1 changed files with 9 additions and 0 deletions

@ -93,9 +93,18 @@ A percent sign. This is used for modulo operations.
## Tilde
A tilde (`~`) symbol. This is used as a binary not.
## Equal To
An equals symbol (`=`). This is used to check equality, and *not* to set values. `set` phrases are used for that purpose.
## Not Equal To
A not equals symbol (`!=`). This is used to check inequality.
## Less Than and Greater Than
Less than and greater than symbols (`<` and `>`). These are used to compare numbers, and denote inputs and outputs in [function/method sections](Functions-and-Methods).
## Less Than Equal To and Greater Than Equal To
Like the less than and greater than tokens, except each followed by an equals symbol (`<=` and `>=). These are used to compare numbers.
## Left Shift and Right Shift
The less than and greater than sumbols respectively, but each repeated once (`<<` and `>>`). These are used to perform left and right bit shift options on values.