GOTO

Function

Skips to the specified label.

Syntax

GOTO label

Arguments

label

A label in the same section or paragraph.

Description

Labels must end with a colon (:) and can appear anywhere within the same section or paragraph as GOTO.

Examples

begin-select
  price
    if &price < #old_price
      goto next
    end-if
  print &price (2,13,0) edit 999,999.99
   ...
  next:
    add 1 to #count
    from products
end-select