sendloop.gml
来自「开放源码的编译器open watcom 1.6.0版的源代码」· GML 代码 · 共 34 行
GML
34 行
.section END LOOP Statement
.*
.mext begin
END LOOP
.mext end
.np
The
.kw END LOOP
statement is used in conjunction with the structured
.kw LOOP
statement.
The
.kw END LOOP
statement marks the end of a sequence of statements which are to be
repeated.
The
.kw LOOP
statement marks the beginning of the loop.
The LOOP-block is executed until control is transferred out of the
LOOP-block.
.np
The
.kw QUIT
statement may be used to transfer control out of a LOOP-block.
.exam begin
LOOP
READ *, X
IF( X .GT. 99.0 ) QUIT
PRINT *, X
END LOOP
.exam end
.np
For more information, see the chapter entitled :HDREF refid='fstruct'..
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?