>>107664348
Show me the equivalent of this without goto. If it's less legible in any way, you're full of shit.
bool process()
{
phase1:
if (!p1())
return false;
phase2:
if (!p2())
goto phase1;
phase3:
if (!p3())
goto phase2;
if (!p4())
goto phase3;
Comment too long. Click here to view the full text.