The operator goto allows you to go to the line of code with the appropriate label.
In functions, this transition goes to local labels (located in this function).
Added operator global
Syntax:
goto global
Being written in a function, it allows you to exit from a function to a global label declared outside of functions.
Example:
CODE:
a:; //№ 1
ff ();
function ff ()
{
a:; //№ 2
goto a; //Prereydet on a tag № 2
goto global a; //Preload on a label a № 1
}
ff ();
function ff ()
{
a:; //№ 2
goto a; //Prereydet on a tag № 2
goto global a; //Preload on a label a № 1
}
Labels declared in include will not be distributed.