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 arrOne(0 to 9) as integer 'is a one dimensional array and contains 10 entries.
Dim arrTwo(0 to 9,0 to 9) as integer ' is two dimensional with 100 entries.
Dim arrThree(9,9,9) as integer 'is three dimensional with 1000 entries.
Dim strArray(0 to 9) as string