gotolabl.bas

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

BAS
23
字号
Print "Hello"


goto test_label
Print "This should NOT print"


test_label:
gosub test_sub
Print "Goodbye"
End


test_sub:
   Print "This is the subroutine."
   gosub test_subsub
   Return


test_subsub:
   Print "This is the sub-subroutine."
   Return

⌨️ 快捷键说明

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