Category:Branching Statements

From BR Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
END IF (EN IF)

Works in conjunction with IF to transfer control or execute statements on the basis of a conditional expression.

ELSE (EL)

Works in conjunction with IF to transfer control or execute statements on the basis of a conditional expression.

GOSUB (GOS)

Unconditionally transfers program control to a subroutine.

GOTO (GOT)

Unconditionally transfers program control to a line or label.

IF

Transfers control or execute statements on the basis of a conditional expression.

ON GOSUB (ON GOS)

Conditionally transfers control to one of a list of subroutines.

ON GOTO (ON GOT)

Conditionally transfers control to one of a list of lines.

RETURN (RETU)

Ends a subroutine and returns control to the statement after the calling GOSUB.

Pages in category "Branching Statements"

The following 9 pages are in this category, out of 9 total.