Project

General

Profile

Actions

Added in 1.9.0

/continue

Use to continue a loop in scripts.

Example

var %s 0
while (%s < 10) {
  if (%s == 5) {
    ; skip if %s is 5
    continue
  }

  echo -ag s is %s
}

Updated by Per Amundsen about 1 year ago · 2 revisions

Also available in: PDF HTML TXT