Data Type VisualBasic Script

Sub intDemo()
    Dim intMyVar As Integer
    For intMyVar = 1 To 300
        'repeat actions
    Next intMyVar
End Sub