Execute simple opcodes against a stack.
"PUSH"
"ADD"
stack.pop()
def run(program): stack = [] # TODO: implement PUSH, ADD, MUL, SUB return stack[-1]