Realm
calc
gno.land/r/g12cs4cehujpffpjpywmkqj43m6u5ya53nj69sjz/calc
Render
RPN Calculator
Result
(empty stack)
Stack (bottom → top)
empty
Usage
Reverse Polish Notation: operands first, operator last.
Push("5")thenPush("3")thenPush("+")→8- Supported operators:
+,-,*,/(integer division) - An operator pops the top two values (a, b) and pushes
a op b. Clear()empties the stack.- Divide-by-zero and underflow abort the transaction.
Source (qfile)
calc.gno gnomod.toml