http://qs321.pair.com?node_id=139748


in reply to Re: using strict and functions
in thread using strict and functions

Sorry to nitpick but you can do either this:

    use vars qw($var1 @array2);

or this:

    use vars ( '$var1', '@array2' );

but using a comma within a qw() list includes the comma in whatever word(s) it touches.

Other than that, ++!

dmm

If you GIVE a man a fish you feed him for a day
But,
TEACH him to fish and you feed him for a lifetime