Sub prog() subtest "金丸隆志" MsgBox "メインのプロシージャを終了します" End Sub Sub subtest(name As String) MsgBox name & "さんがsubtestプロシージャを実行しました" End Sub |
subtest "金丸隆志" |
Sub subtest(name As String) |
Sub prog() subtest "金丸隆志", 70 End Sub Sub subtest(name As String, score As Integer) MsgBox name & "さんのテストの点数は" & score & "点です" End Sub |
subtest "金丸隆志", 70 |
Sub subtest(name As String, score As Integer) |