Stop Statement

Basic プログラムの実行を停止させます。

構文:

Stop

例:

Sub ExampleStop

Dim iVar As Single

    iVar = 36

    Stop

    MsgBox Sqr(iVar)

End Sub