On Wednesday, August 20, 2003, at 01:45 AM, Trina Espinoza wrote:

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]



Reply via email to