Hacker News new | ask | show | jobs
by enriquto 506 days ago
> You pay for that by having a stack rather than a small fixed number of variables.

you can easily add variables to your rpn calculator. For example ">x" pops the top of the stack into the variable x, and "<x" pushes the value of x to the stack.

You can also interpret parentheses as whitespace to enable users to group parts of the computation (but this may become confusing when they write nonsensical parentheses).

1 comments

They meant that the implementation of a four-function calculator only needs a few fixed variables rather than a stack.