📜  visual basic 代码语法 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:27.785000             🧑  作者: Mango

代码示例1
Module mainModule
    Sub Main()
        MsgBox("The Main procedure is starting the application.")
        ' Insert call to appropriate starting place in your code.
        MsgBox("The application is terminating.")
    End Sub
End Module