From 45e3db6e41f92da13fc840fed2f7c1d3c0c15b42 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Thu, 25 Aug 2022 04:09:37 +0000 Subject: [PATCH] Update 'Tokens' --- Tokens.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Tokens.md b/Tokens.md index d3dc5b4..3470769 100644 --- a/Tokens.md +++ b/Tokens.md @@ -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.