Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim ary(5) As String
Dim i As Integer
For i = 0 To UBound(ary)
ary(i) = i * 2.5
Next i
For i = 0 To UBound(ary)
[blue]Debug.Print "ary(" & i & ") = " & ary(i)[/blue]
Next i
For i = 0 To UBound(ary) : ? "ary(" & i & ") = " & ary(i) : Next i