Jump anywhere: Difference between revisions

→‎{{header|Vlang}}: Rename "Vlang" in "V (Vlang)"
Tag: Manual revert
(→‎{{header|Vlang}}: Rename "Vlang" in "V (Vlang)")
Line 2,926:
In VBScript, there is no <code>goto</code> statement. It is a good thing for structured programming.
 
=={{header|V (Vlang)}}==
V (Vlang) and 'goto':
 
1) 'Goto' used only with 'unsafe' statements.
Line 2,936:
 
4) Labelled 'break' and 'continue' allow easy breaking out of a nested loop or continuing within a containing loop.
<syntaxhighlight lang="v (vlang)">
// Unsafe 'goto' pseudo example:
 
451

edits