mlifthen.bas
来自「这是一个简易的basic语言解释器, 可供我们学习和改进.」· BAS 代码 · 共 17 行
BAS
17 行
rem -------------------------------------------------rem mlifthen.bas -- Test MultiLine IF-THEN statementrem -------------------------------------------------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 IfPrint "This concludes our test."
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?