From: Gary Stainburn <[EMAIL PROTECTED]>
> I've got a query about variable initialisation. I want to initialise a
> list of variables to an empty string, but I'm having troubles.
> 
> What's the best wat to do this?
> 
>  If I use the following I get:
> 
> [EMAIL PROTECTED] gary]$ cat t
> #!/usr/bin/perl -w
> 
> use strict;
use warnings;
no warnings 'uninitialized';
my ( $fred, $ginger);

The uninitialized warning is IMHO useless and annoying.

Jenda
===== [EMAIL PROTECTED] === http://Jenda.Krynicky.cz =====
When it comes to wine, women and song, wizards are allowed 
to get drunk and croon as much as they like.
        -- Terry Pratchett in Sourcery


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

Reply via email to