This commit makes it possible to compile and assemble sixty-four.vy, and
compute the correct result!!!!!!!
In order to avoid having to do any detailed analysis on variable usage,
this currently accesses everything via the stack. This means allocating
stack space for every instruction, and then saving and loading
everything from the stack frame.
The translation of individual functions is pretty direct. Due to going
via the stack for everything, we can translate each individual
instruction on its own, in order, without looking at other instructions.
This currently doesn't implement copying data into the closures, because
the current test case doesn't do that at all.
This also hard-codes the one builtin (debug) that's referred to by the
test program.