It must be a silly question, but I know you (all the perl enlighted) must have the answer...
why do people use things like this :
use vars qw(@array);
rather than
use vars(@array);
I think I've read in the camel book that qw() is equal to ().
So is there a special reason to use qw() except for style (even if for my part : shorter is nicer...)