WC -Sx- Jones [mailto:[EMAIL PROTECTED]
:
: 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;
Ahh! Grasshopper ... :)
Make 'Indians' an array.
my( $onelittle,
$twolittle,
$threelittle, ) = ('Indians') x 3;
HTH,
Charles K. Clarkson
--
Mobile Homes Specialist
254 968-8328
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>