sendaten.gml
来自「开放源码的编译器open watcom 1.6.0版的源代码」· GML 代码 · 共 31 行
GML
31 行
.section END AT END Statement
.*
.mext begin
END AT END
.mext end
.np
The
.kw END AT END
statement is used in conjunction with the structured
.kw AT END
statement.
The
.kw END AT END
statement marks the end of a sequence of statements which are part of
an AT END-block.
The
.kw AT END
statement marks the beginning of the AT END-block.
The AT END-block is executed when the preceding
.kw READ
statement terminates because of an end-of-file condition.
.exam begin
READ( UNIT=1, FMT='(3I5)' ) I, J, K
AT END DO
PRINT *, 'END-OF-FILE ENCOUNTERED ON UNIT 1'
EOFSW = .TRUE.
END AT END
.exam end
.np
For more information, see the chapter entitled :HDREF refid='fstruct'..
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?