On Tue, Aug 22, 2006 at 11:44:43PM -0500, Mumia W. wrote:
>
> for my $letter (qw(a e i o u)) {
> print $letter, "\n";
> }
Fore!
#!/usr/bin/perl -l
use strict;
use warnings;
print for qw(a e i o u);
. . . or from the command line:
perl -le 'print for qw(a e i o u)'
Sorry, couldn't resist the call of plaid pants and electric carts.
--
CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ]
This sig for rent: a Signify v1.14 production from http://www.debian.org/
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>