12-6-13

Program Command Reference

PauseSyntax: Pause

Function: This command pauses program execution and displays a pause indicator on the right side of the status bar.

Description

You can perform manual operations on the ClassPad display screen while program execution is paused by the Pause command.

Program execution remains paused until you tap the button on the status bar, or until six minutes pass (after which program execution resumes automatically).

ReturnSyntax: Return{<variable>}Function 1 (Main Program)This command terminates program execution.Function 2 (Subroutine Program)This command returns from a subroutine.

Tip

The Return command can be executed during an If, For, Do, While, or Switch process.

Appending a <variable> to the Return command in the Main application and executing the command will cause the variable to be displayed when the program is complete.

SkipSyntax: Skip

Function: This command causes execution to jump to the statement at the beginning of a

loop.

Description

Skip causes execution to jump to the statement at the beginning of a loop.Skip can be used inside of a For, Do, or While process.StopSyntax: StopFunction: This command terminates program execution.

Description: This command terminates all program execution, including that of the main program when a subroutine program is running.

20080201