in reply to qw and its lovely magic

That's simply one convenient way of providing a list of arguments to the module. use strict qw/vars subs/; is equivalent to use strict 'vars', 'subs';.

Arguments to module loading are often handled by Exporter.pm to guide function import by the use-ing namespace.

After Compline,
Zaxo