Language Basics VisualBasic Script

Option Explicit
Dim slsTax As Single      ' module-level variable declared with Dim statement
Sub CalcCost()
    '...Instructions of the procedure...
End Sub