Data Type VisualBasic Script

Sub Accumulate()
    Dim n As Integer
    Dim t As Integer
    For n = 1 To 10
        t = t + n
    Next n
    MsgBox "        The total is " & t
End Sub