Package de.projectory.koivima.operators

KoiViMa standard operators.

See:
          Description

Class Summary
Add Adds two integer values.
BranchOnCondition Branches on condition.
Copy Copies the last element of the stack.
Delete Deletes the last element of the stack.
Equals Compares to integer values.
Evaluate Takes a code block from the stack and evaluate it.
ForEach Takes a list and a code block from the stack and evaluate the code for each list element.
GreaterThan Compares to integer values.
Jump Performs a relative jump.
JumpOnCondition Performs a relative jump on condition.
JumpOnNotCondition Performs a relative jump if a condition is == 0.
LessThan Compares to integer values.
Nop Performs no operation.
Not Changes 0 to 1 and values !
Print Prints the content of the last stack element onto the screen.
PrintHello An operator that prints Hello World to the screen.
PrintLine Prints the content of the last stack element onto the screen and performs a line break.
Range Creates a list of integer values.
Sub Substracts one integer from another Stack: ... a b => ... c c = a - b
 

Package de.projectory.koivima.operators Description

KoiViMa standard operators.