senddo.gml
来自「开放源码的编译器open watcom 1.6.0版的源代码」· GML 代码 · 共 34 行
GML
34 行
.section END DO Statement
.*
.mext begin
END DO
.mext end
.np
The
.kw END DO
statement is used to terminate the range of a "structured"
.kw DO
statement.
A structured
.kw DO
statement is one in which a statement label is not present.
For more information, see the description of the structured
.kw DO
statement or the chapter entitled :HDREF refid='fstruct'..
.exam begin
DO X = -5.1, 12.8, 0.125
.
.
.
END DO
.exam end
.exam begin
X = -5.1
DO WHILE( X .LE. 12.8 )
.
.
.
X = X + 0.125
END DO
.exam end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?