|
|
|
|
|
by garenp
1695 days ago
|
|
This is generally my sentiment as well. The reason to avoid using goto is if it makes following the flow of execution for us humans difficult, which typically happens when jumping backwards. Using goto judiciously to more easily escape a deeply nested block of code and/or jump to a cleanup section is not hard to follow. |
|