in reply to Sad newbie question about Data::Dumper and array references..

I'm surprised noone has told you to do this:

#!/usr/bin/perl -w

you would then have got this:
Use of uninitialized value in print at - line nn.
(because @data is undefined)

Which should always make you suspicious.
  • Comment on Re: Sad newbie question about Data::Dumper and array references..