The basis of this language is there are no built-in constructs other than simple arithmetic, decision making, and variables. The good thing is that variable names can be regular expressions to aid in programming.
Input:
(Separated by spaces)
Output:
Operators:
(In order of importance)
Input: i(n)
Multiplication: (-)n*(-)n
Division: (-)n/(-)n
Addition: (-)n+(-)n
Subtraction: n-n
Greater Than: (-)n>(-)n
Less Than: (-)n<(-)n
Ternary: n?_:_; ($ in _ becomes n)
Variables
Variable Definition:
var=___ Sets var equal to ___ evaluated
var~___ Sets var equal to ___ unevaluated