Jump anywhere: Difference between revisions

Line 2,933:
2) 'Goto' only allowed unconditionally jumping to a label within the function it belongs to.
 
3) Labelled 'break' and 'continue' statements are among the preferred alternatives to 'unsafe goto' usage.
 
4) Labelled 'break' and 'continue' allow easy breaking out of a nested loop or continuing within a containing loop.
<syntaxhighlight lang="vlang">
// Unsafe 'goto' pseudo example:
291

edits