sendif.gml
来自「开放源码的编译器open watcom 1.6.0版的源代码」· GML 代码 · 共 30 行
GML
30 行
.section END IF Statement
.*
.mbox begin
END IF
.mbox end
.np
The
.kw END IF
statement is used in conjunction with the block
.kw IF
statement.
The
.kw END IF
statement marks the end of a sequence of statements which are to be
conditionally executed.
.exam begin
IF( X .LT. 100.0 )THEN
PRINT *, 'X IS LESS THAN 100'
END IF
.exam end
.pc
The
.kw END IF
statement can also be used in conjunction with the
.kw ELSE
and
.kw ELSE IF
statements.
For more information, see the chapter entitled :HDREF refid='fstruct'..
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?