"David Gilden" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Quick question:
> my( $string ) = "you ordered " . $q->param('quantity') . " foobars\n";
>
>
> What with the '( )'  do I need them every time I declare a variable?
>

You can declare them like this:

my $foo;
my $bar;

Or you can declare like this:

my ($foo, $bar);

I prefer the first way...

Bob



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to