virudinesh has asked for the wisdom of the Perl Monks concerning the following question:
my @stuff = ( ['one', 'two', 'three', 'four'], [7, 6, 5], ['apple', 'orange'], [0.3, 'random', 'stuff', 'here', 5], ); print $stuff[0][2], "\n"; print $stuff[3][1], "\n";
its only print three and random
but i want to print randomly how?
how to print one by one continuously in full array
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: how to print continuously in array of array?
by marto (Cardinal) on May 30, 2013 at 10:05 UTC | |
|
Re: how to print continuously in array of array?
by karlgoethebier (Abbot) on May 30, 2013 at 11:32 UTC | |
|
Re: how to print continuously in array of array?
by choroba (Cardinal) on May 30, 2013 at 11:38 UTC | |
|
Re: how to print continuously in array of array?
by space_monk (Chaplain) on May 30, 2013 at 15:32 UTC | |
|
Re: how to print continuously in array of array?
by 2teez (Vicar) on May 30, 2013 at 11:43 UTC | |
|
Re: how to print continuously in array of array?
by ambrus (Abbot) on May 30, 2013 at 20:11 UTC |