Re: Sequences
- Posted by mike burrell <mikpos at GAIANET.NET> Jan 14, 1997
- 815 views
> I have a quick question about sequences. How do I construct a > multidimensional type array with sequences? For example, in Basic I > would use: > > Dim dataarray(3,6,4,3) > > How would this be accomplished using euphoria? well obviously you can't "define" sequences in euphoria because of its data allocation system... but you have something like this: sequence data_array data_array = hope that clarifies things :D