Skip to content
This repository was archived by the owner on Aug 27, 2021. It is now read-only.
JBtje edited this page Sep 17, 2015 · 1 revision

Syntax

GOTO <line number>

Description

The GOTO command allows you to jump to other lines.

Example

NEW
10 A = 50
15 GOTO 30
19 // Note that due to the GOTO command, line 20 is never executed.
20 PRINT A
30 PRINT A + 10
LIST

Returns:

60

Clone this wiki locally