J - Jump.

Syntax:

JM/message/   Jump Message
JP/message/   Jump Prompt
JE/message/   Jump Exit
JOT           Jump Out if true
JOF           Jump out if false
JBT           Jump Break if true
JBF           Jump Break if false
J(label)      Jump to label
J(label)T     Jump to label if true
J(label)F     Jump to label if false
JT            Skip rest of line if true
JF            Skip rest of line if false

Examples:

jm/Hello there/
jp/Do you want a manual (yes or no)?/
je;Ending execution;
jot
jbf
jb
j(label)
jt "commands

Description:

The Jump commands are used to "jump" over commands, to transfer control from one buffer to another, and to print messages to the terminal.

See Also:

J
Jump to label
JM
Jump and print a message
JP
Jump and prompt for input
JE
Jump and exit program
JO
Jump out of block
JB
Jump and break loop
JT
Skip line if true
JF
Skip line if false

Copyright © 1998, Thinkage Ltd.