JUMP() Branch to Label or Start Command

This command can "jump" to a Label or to the start of the task. Functionally, it is almost identical to the basic use of the BRA command.
Jump(x) - Jump to the task start or Label.
x can be a label or "0" which takes you to the start of the task.

Functionally this is almost identical to BRA.

Syntax

Jump(x)
Where "x" is the location you want to jump to. "x" can be a Label or "0" which takes you to the start of the task.

Examples

Example 1

Task1()
{
Name="Task 1"
Loop:
Preset(A=4,P=5,F=2)
Delay(2)
Preset(A=4,P=6,F=2)
Delay(2)
Jump(Loop)   //Jumps to the label "Loop:"
}

Example 2

Task2()
{
Name="Task 2"
Preset(A=4,P=5,F=2)
Delay(2)
Preset(A=4,P=6,F=2)
Delay(2)
Jump(0)    //Jump to the start of the task.
}