from_left,from_top,from_right:to_left,to_bottom,to_right;#comment
+
Plus or concatenate-
Subtract or concatenate*
Multiply or concatenate/
Divide or concatenate^
Bitwise XOR or concatenate&
And|
Ora..b
Between a and b (exclusive). A and B must be expressions.Work more like macros
fn name argument: value;
Functions may not call other functions. Use name argument
to call a function.
D=T;
or Debug=True;
Show intermediate valuesD=F;
or Debug=False;
Show only final result (default)I=C C;
or Input = Cmd Characters;
Take input as character codes (default)
I=C N;
or Input = Cmd Numbers;
Take input as comma seperated numbersI=1,2;
Input is 1,2O=C;
or Output = Characters;
Output as charactersO=N;
or Output = Numbers;
Output as comma seperated numbersM=5;
or Max= 5;
Limit to max 5 iterations