Language Basics VisualBasic Script

Sub constDemo()
    Const conVenue As String = "Hall"
    Const conDate As Date = #12/31/2005#
    MsgBox "The concert is at " & conVenue & " on " & conDate & "."
End Sub