company logo

Go to line (JUMP)

The function allows changing the current line in a function. The next statement executed is the statement at the function addressed by number. When the line is empty, the next valid statement will be selected. When the line is at the end of function, the function returns to the calling function. When changing statement in another frame, called functions are canceled.

Parameters:

  • number - line number to be called (use L to see numbers)

Syntax:

  jump|j [number]

Examples:

  j 10              // continues with executing line 10

  j 999             // leaves the function that less than 999 lines

Notes:

Accessing statements in blocks (e.g. while block) may cause problems.