Comment on Writing a C compiler in 500 lines of Python (2023)parentComments−17186274401yWhat is the benefit over this: loop: { ...body if (!conditon) goto loop; } What separates loop syntax from goto is explicit syntax for the condition. When you give that up, why do you have loop at all?
Comments
What is the benefit over this:
What separates loop syntax from goto is explicit syntax for the condition. When you give that up, why do you have loop at all?