Page 1 of 1

Single Dimentional Array

Posted: Wed Aug 03, 2011 11:54 am
by BarrySumpter
Is there any way to create a single dimentional array?

ary(1) = "Batman"
ary(2) = "Robin"

Or would you have a string
ary = "Batman,Robin"

Re: Single Dimentional Array

Posted: Wed Aug 03, 2011 12:27 pm
by Klaus
A one-dimensional array is just like a multi-dimensional array withouth the "multi" stuff:
put "Batman" into ary[1]
etc...