Skip to content

Operators

Integer/Float operators

Operation Description
x + y Add
x - y Sub
x * y Mul
x / y Div
x % y Mod
x ^ y Pow
x == y Equals (returns bool)
x != y Not Equals (returns bool)
x > y Superior (returns bool)
x >= y Superior or equal (returns bool)
x < y Inferior (returns bool)
x <= y Inferior or equal (returns bool)

String/Array operators

Operation Description
x + y Joins two collections together

Boolean operators

Operation Description
x && y And
x || y Or