Language Basics VisualBasic Script

Sub msgSub()
    MsgBox "The procedure is complete."
End Sub
'Formatting the Message Box
Sub msgBoxQuotation()
    MsgBox "A ""B"" C."
End Sub