
-----------------------------------
numba1
Fri Jun 10, 2005 8:06 pm

calling up an array
-----------------------------------
the user inputs their selection into an array(1-5 items)
now how do i display the contents of the array to the user

-----------------------------------
wtd
Fri Jun 10, 2005 8:20 pm


-----------------------------------
If you know how to use Turing's "for" loop and "put", then you already know the answer to that question.

-----------------------------------
MysticVegeta
Fri Jun 10, 2005 8:51 pm


-----------------------------------
var arr : array 1..5 of string
for s : 1..5
get arr(s)
put arr(s)
end for

