I only know the first part. qq is double quotes. As opposed to the qw which
is single quotes.
Close. qq() is double quotes, you got that right. q() is single quotes. qw() is the "Quote Words" operator. It turns this:
qw(some words and spaces)
...into this:
("some", "words", "and", "spaces")
Hope that helps.
James
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]