main.bas
来自「umon bootloader source code, support mip」· BAS 代码 · 共 18 行
BAS
18 行
Sub Prior
Print "This is a subroutine prior to MAIN."
Print "This should not print."
End Sub
Sub Main
Print "This is the MAIN subroutine."
Print "This should print."
End Sub
Sub Subsequent
Print "This is a subroutine subsequent to MAIN."
Print "This should not print."
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?