[ PAUSE
[comment]
PAUSE
88
The
PAUSE
statement allows you
to
interrupt program execution
to
perform cal-
culator operations. The syntax
of
the
PAUSE
statement
is
as
shown:
PAUSE
[comment]
where:
comment
is
optional.
When
a
PAUSE
statement
is
encountered during program execution, execution
is
interrupted and the message:
PAUSE
s
is
shown on line 0
of
the
display screen, where s
is
the
line number of the
PAUSE
statement. To resume program operation, you must issue a
GO
command. Note
that
you should
not
renumber statements (see RENUM, Chapter
2)
or
alter a calling
statement (see
DEF, FNEND, RETURN) while a program
is
interrUpted.
The following statement would cause the message
PAUSE
0080
to
be
displayed
and processing
to
be suspended until a
GO
command
is
issued:
80
PAUSE
,/
./