Performs an unconditional branch to the statement following the specified label.
Goto Label
.
.
Label:
The specified label must be declared inside the current code segment (Test or Subroutine) before or after the Goto statement.
If i = 5 Then
Goto TestEnd
Endif
! Program statements
TestEnd:
! other Program statements