in reply to Re: What would be the easier way
in thread What would be the easier way

hey, im sorry i didnt really get that since ive started using perl recently, can you explain this part to me a little @{ $height{$input}} What will my array be called then? Thanks!

Replies are listed 'Best First'.
Re^3: What would be the easier way
by james2vegas (Chaplain) on Mar 04, 2013 at 01:50 UTC
    @{ $whatever } de-references the array ref $whatever so you can use the reference as an array. Your data are contained in array references which you need to de-reference with @{ } to use as arrays.
Re^3: What would be the easier way
by Anonymous Monk on Mar 04, 2013 at 01:36 UTC
      That is not an array, but an array reference.
      A reply falls below the community's threshold of quality. You may see it by logging in.