11-11-2013, 11:09 PM
What I'd love to see in one of the next revs: basically the << >> programming of the HP RPN calculators. Have a command that starts RPN programming mode, then simulate the stack operations in the program:
EXPORT NORM
BEGIN
RPNMODE
PUSH * SWAP PUSH * + SQRT
END
Above would take two items on the stack, multiply each by itself (in effect squaring each), adding them together, then taking the square root.