10 print "This program tests the indexing ability":print
20 input "Enter an index:",i
30 print "Enter a number for a(";i;")";
40 input a(i)
50 print "You entered ";a(i);" for a(";i;")"
60 if i <> 0 then 20
70 print "the end"
