Skip to content
This repository was archived by the owner on Aug 27, 2021. It is now read-only.

_RETURN

JBtje edited this page Sep 24, 2015 · 1 revision

Syntax

RETURN

Description

The RETURN command will is used in combination with other functions. It returns the program to the previous place, after having executed a subsection. RETURN also quits the program from running, in case it is used stand alone.

Example

NEW
10 A = 1
20 PRINT A
30 RETURN
40 // Below code is not executed
50 PRINT A + 1

Returns:

1

Clone this wiki locally