>>400
Consider the following simple program: (note: details omitted for sanity)
print (a + b)
What does it do? print
Print what? the sum
the sum of what? a
with what? b
Typical stack machine instruction:
push a
push b
do operation sum
do operation print