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"
Single Dimentional Array
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
-
- Posts: 1201
- Joined: Sun Apr 24, 2011 2:17 am
Single Dimentional Array
All my best,
Barry G. Sumpter
Deving on WinXP sp3-32 bit. LC 5.5 Professional Build 1477
Android/iOS/Server Add Ons. OmegaBundle 2011 value ROCKS!
2 HTC HD2 Latest DorimanX Roms
Might have to reconsider LiveCode iOS Developer Program.
Barry G. Sumpter
Deving on WinXP sp3-32 bit. LC 5.5 Professional Build 1477
Android/iOS/Server Add Ons. OmegaBundle 2011 value ROCKS!
2 HTC HD2 Latest DorimanX Roms
Might have to reconsider LiveCode iOS Developer Program.
Re: Single Dimentional Array
A one-dimensional array is just like a multi-dimensional array withouth the "multi" stuff:
put "Batman" into ary[1]
etc...
put "Batman" into ary[1]
etc...