Hmmm, I get 3 Indians in only the first variable anyways =/



#! /usr/bin/perl -w


use strict;

# Make -w / use strict; happy...
my (    $onelittle,
        $twolittle,
        $threelittle,
   ) = 'Indians' x 3;

print "1 $onelittle 2 $twolittle 3 $threelittle\n\n";

__END__


Output -


bash-2.05$ perl axxa
Use of uninitialized value in
        concatenation (.) or string at axxa line 12.
Use of uninitialized value in
        concatenation (.) or string at axxa line 12.
1 IndiansIndiansIndians 2  3


-Bill- __Sx__________________________________________ http://youve-reached-the.endoftheinternet.org/

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>




Reply via email to