Skip to content

Operators#

Unary Operators#

Operator Implementation
not x == true
length x
round x
abs x
floor x
ceil x
sqrt x
sin x
cos x
tan x
asin x
acos x
atan x
ln x
log x
antiln x
antilog x

Binary Operators#

Operator Implementation
x + y
x - y
x * y
x / y
x // y
x % y
x & y
x == y
x != y
x < y
x <= y
x > y
x >= y
x == true and y == true
x == true or y == true
x in y
x[y]

Random#

random(x, y)