Comment on A function decorator that rewrites the bytecode to enable goto in PythonparentComments−rightbyte4yWith goto in your language that guarantee is gone: you might have to understand the entire rest of the program in order to figure out any one function.The same is true, to a greater degree, for function calls.In eg. C goto:s are function scope.
Comments
The same is true, to a greater degree, for function calls.
In eg. C goto:s are function scope.