●確認テスト4

【問題文】

文字列型の変数"Str"を作成し、文字"Str"を代入しなさい。

【解答例】

Sub Test_Variable4()
    Dim Str As String
    Str = "Str"
    
End Sub