ExpressionsExpression statements are at the root of the CyberLang interpreter. These statements are defined by arithmetic or logical expressions not followed or trailed by CyberLang keywords. The value of these statements are calculated by the Evaluator class. The supported operators are:
'+', '-', '*', '/', '%', '>', '<', '>=', '<=', '==' & '!='
The order of execution follows 'PEMDAS'.
Last login: Mon June 23 22:29:57 on ttys002
1 + 2 / (3 - 4) * 5 % 6 != 8;