Operators
Unary Operators
+-----------------+---------------------------------------------+
| Operator | Implementation |
+=================+=============================================+
| `not x == true` |
=> ../assets/not.png [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `length x` |
=> ../assets/length.png |
| | [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `round x` |
=> ../assets/round.png [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `abs x` |
=> ../assets/abs.png [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `floor x` |
=> ../assets/floor.png [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `ceil x` |
=> ../assets/ceil.png [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `sqrt x` |
=> ../assets/sqrt.png [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `sin x` |
=> ../assets/sin.png [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `cos x` |
=> ../assets/cos.png [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `tan x` |
=> ../assets/tan.png [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `asin x` |
=> ../assets/asin.png [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `acos x` |
=> ../assets/acos.png [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `atan x` |
=> ../assets/atan.png [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `ln x` |
=> ../assets/ln.png [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `log x` |
=> ../assets/log.png [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `antiln x` |
=> ../assets/antiln.png |
| | [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
| `antilog x` |
=> ../assets/antilog.png |
| | [IMG]
{width="125"} |
+-----------------+---------------------------------------------+
Binary Operators
+---------------------------+--------------------------------------------------+
| Operator | Implementation |
+===========================+==================================================+
| `x + y` |
=> ../assets/add.png [IMG]
{width="125"} |
+---------------------------+--------------------------------------------------+
| `x - y` |
=> ../assets/subtract.png [IMG]
{width="125"} |
+---------------------------+--------------------------------------------------+
| `x * y` |
=> ../assets/multiply.png [IMG]
{width="125"} |
+---------------------------+--------------------------------------------------+
| `x / y` |
=> ../assets/divide.png [IMG]
{width="125"} |
+---------------------------+--------------------------------------------------+
| `x // y` |
=> ../assets/floor_divide.png |
| | [IMG]
{width="200"} |
+---------------------------+--------------------------------------------------+
| `x % y` |
=> ../assets/mod.png [IMG]
{width="125"} |
+---------------------------+--------------------------------------------------+
| `x & y` |
=> ../assets/join.png [IMG]
{width="125"} |
+---------------------------+--------------------------------------------------+
| `x == y` |
=> ../assets/eq.png [IMG]
{width="125"} |
+---------------------------+--------------------------------------------------+
| `x != y` |
=> ../assets/neq.png [IMG]
{width="125"} |
+---------------------------+--------------------------------------------------+
| `x < y` |
=> ../assets/lt.png [IMG]
{width="125"} |
+---------------------------+--------------------------------------------------+
| `x <= y` |
=> ../assets/leq.png [IMG]
{width="125"} |
+---------------------------+--------------------------------------------------+
| `x > y` |
=> ../assets/gt.png [IMG]
{width="125"} |
+---------------------------+--------------------------------------------------+
| `x >= y` |
=> ../assets/geq.png [IMG]
{width="125"} |
+---------------------------+--------------------------------------------------+
| `x == true and y == true` |
=> ../assets/and.png [IMG]
{width="400"} |
+---------------------------+--------------------------------------------------+
| `x == true or y == true` |
=> ../assets/or.png [IMG]
{width="400"} |
+---------------------------+--------------------------------------------------+
| `x in y` |
=> ../assets/in.png [IMG]
{width="125"} |
+---------------------------+--------------------------------------------------+
| `x not in y` |
=> ../assets/notin.png [IMG]
{width="125"} |
+---------------------------+--------------------------------------------------+
| `x[y]` |
=> ../assets/letterof.png [IMG]
{width="125"} |
+---------------------------+--------------------------------------------------+
Random
random(x, y)
gemini://tilde.club/~aspizu/goboscript/assets/random.png%20[IMG]
{width="200"}