Evaluate the value of an arithmetic expression in Reverse Polish Notation.
top
2
0
tokens=["2", "1", "+", "3", "*"]
t=2
Step 1 / 6
Step 1:
Token "2" is a number. Push it onto the stack.
Pointers: top=0
Focus: select @ [0]
t="2"
Evaluate the value of an arithmetic expression in Reverse Polish Notation.