>> Use of uninitialized value in numeric gt (>)
For example:
<code>
my $oper1; # not initialized
my $oper2 = 10;
print "blahn" if $oper1 > $oper2; # using $oper1 without a value
<code>
>> Use of uninitialized value in concatenation (.) or string
For example:
<code>
my $str1; # not initialized
my $str2 = "Perl";
print $str1 . $str2; # using $str1 without a value
<code>
HTH.
On 5/10/07, Mirza Abdullah Jan < jan576pk%40yahoo.com">jan576pk
yahoo.com> wrote:
>
> Hi All,
>
> Why these warning messages appears, what is the reason? How we can cater
> this?
>
> Use of uninitialized value in numeric gt (>)
>
> Use of uninitialized value in concatenation (.) or string
>
> Regards
> Abdullah
>
> ---------------------------------
> Ahhh...imagining that irresistible "new car" smell?
> Check outnew cars at Yahoo! Autos.
>
> [Non-text portions of this message have been removed]
>
>
>
--
Thiago Nascimento
perl -e '$_="tMM naaCt Feocmama_itpUilucoGa";$_.=$1,print $2 while
s/(..)(.)//;print substr$_,1,1;'
"...just because I don't know the meaning of my art, does not mean it has no
meaning..." S.D.
[Non-text portions of this message have been removed]
.