This is a small command line tool used to evaluate reverse polish notation mathematical expressions.
Reverse polish notation is an alternative way of writing mathematical expressions. In RPN the operands (the numbers) always come before the operator, there are no parenthesis and the only rule regarding order of operations is left to right.
Example:
2 * (3 + 4)
is equivalent to 2 3 4 + *
On Unix:
make clean install
you will probably need root access
On Windows:
Uhhh... good luck :)
- When using * symbol for multiplication, you'll need to escape it or put it in quotation marks, otherwise bash will substitute it with all of the files in the directory