mlifthen.bas

来自「umon bootloader source code, support mip」· BAS 代码 · 共 17 行

BAS
17
字号

rem -------------------------------------------------
rem mlifthen.bas -- Test MultiLine IF-THEN statement
rem -------------------------------------------------

Print "MLIFTHEN.BAS -- Test MultiLine IF-THEN-ELSE Constructions"

If 3 = 4 then
   Print "The Condition is true."
   Print "And it still is true."
Else
   Print "The condition is false."
   Print "And it still is false."
End If

Print "This concludes our test."

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?