Viewing a single comment thread. View all comments

Milnoc t1_iybpcua wrote

C/C++. But as I've said, I use them very sparingly to kick the process out of a nested loop or switch block into a general maintenance chunk of code. I would never use it to jump around within a loop or switch block.

1

xzt123 t1_iybr5of wrote

There's appropriate uses of goto, in C/C++ with nested loops and performance matters, sounds like a reasonable use.

1