in reply to Re: how to use two dimensional array?
in thread how to use two dimensional array?

One of my favorite tidbits of the language - instead of your for loop:

print "@$_\n" for @array;

Replies are listed 'Best First'.
Re^3: how to use two dimensional array?
by BillKSmith (Monsignor) on Jun 14, 2013 at 13:02 UTC
    Very clever way of getting the same output, but I do not think it answers the original question. Also note your dependence om the default value of the special variable $LIST_SEPARATOR ($").
    Bill