Operators
GoMelan supports many basic operators.
Basic Operators in GoMelan
GoMelan supports various basic operators that can be applied to numeric types, such as Int and Float. It's essential to ensure that the types are consistent throughout the calculation.
Becareful, to apply these operators, all the types should be the same across the whole calculation. For example if you want to do
var:
Float
=
0.1
+
2
;
Please consider converting your types
var:
Float
=
0.1
+ intToFloat(2);
Arithmetic Operators
Addition (+):
Subtraction (-):
Multiplication (*):
Division (/):
Comparison Operators
Equal (==):
Not Equal (!=):
Greater Than (>):
Less Than (<):
Greater Than or Equal To (>=):
Less Than or Equal To (<=):
Logical Operators
Logical AND (&&):
Logical OR (||):
Logical NOT (!):
Last updated
Was this helpful?