Re: 3 dimension array
- Posted by "C. K. Lester" <cklester at yahoo.com> Aug 21, 2002
- 384 views
> >> a = 3 > >> b = 7 > >> c = 4 > >> somearray = repeat(repeat(repeat(0,c),b),a) > > > This will need to be made into a recursive function, I'm sure... :) > > The example I gave works. Why "need to"? In case he wants more than 3 dimensions (as he mentioned in his original post)...