sendsele.gml
来自「开放源码的编译器open watcom 1.6.0版的源代码」· GML 代码 · 共 32 行
GML
32 行
.section END SELECT Statement
.*
.mext begin
END SELECT
.mext end
.np
The
.kw END SELECT
statement is used in conjunction with the
.kw SELECT
statement.
The
.kw END SELECT
statement marks the end of a series of
.kw CASE
blocks.
.cp 12
.exam begin
SELECT CASE ( CH )
CASE ( 'a' : 'z' )
PRINT *, 'Lower case letter'
CASE ( 'A' : 'Z' )
PRINT *, 'Upper case letter'
CASE ( '0' : '9' )
PRINT *, 'Digit'
CASE DEFAULT
PRINT *, 'Special character'
END SELECT
.exam end
.np
For more information, see the chapter entitled :HDREF refid='fstruct'..
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?