TAL Reference Summary
Statements
TAL Reference Summary
096256 Tandem Computers Incorporated 43
DROP Statement The DROP statement disassociates an identifier from an index register reserved by a
USE statement or from a label.
DROP
047
,
identifier
FOR Statement The FOR statement is a pretest loop that repeatedly executes a statement while
incrementing or decementing an index.
FOR initial-valueindex
:= TO
DOWNTO
limit
DO
statementstep
BY
048
GOTO Statement The GOTO statement unconditionally transfers program control to a labeled
statement.
GOTO
label-name
049
IF Statement The IF statement conditionally selects one of two statements.
IF
condition THEN
statement
statement
ELSE
050