Skip to content

Latest commit

 

History

History
16 lines (15 loc) · 267 Bytes

Goto.md

File metadata and controls

16 lines (15 loc) · 267 Bytes

Goto

  • Unrecommended
  • Example
While True Do
    For every Element Of ElementArray Do
        If Condition(Element) Then
            Goto ~ExitDoubleLoop;
        EndIf;
        ...
    EndDo;
EndDo;
        
~ExitDoubleLoop:
// continue calculations