createVM method
Create a virtual machine loaded with the code we have parsed.
Implementation
tac.Machine createVM([TextOutputMethod? standardOutput]) {
final tac.Context root = tac.Context(output!.code);
return tac.Machine(root, standardOutput);
}