scontinu.gml
来自「开放源码的编译器open watcom 1.6.0版的源代码」· GML 代码 · 共 30 行
GML
30 行
.section CONTINUE Statement
.*
.mbox begin
CONTINUE
.mbox end
.np
Execution of a
.kw CONTINUE
statement has no effect.
This statement is often used in conjunction with
.kw DO
statements.
It is usually identified with a label.
It often provides a convenient reference for statements which have the
ability to transfer control of execution.
.exam begin
DO 10 X = -5.1, 12.8, 0.125
.
.
.
10 CONTINUE
IF( A .LT. B ) GO TO 20
IF( A .GT. C ) GO TO 20
.
.
.
20 CONTINUE
.exam end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?