in reply to Re: Re: Learning Perl as a First (programming) language
in thread Learning Perl as a First (programming) language
Less mechanics to remember, and no possible confusion over off by one errors. Or even in this case (depending on which way the example was going to develop) just:for my $i (0..9) { print $i; }
Either of these is more convincing than writing Perl like a C refugee.print 0..9;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re(4): Learning Perl as a First (programming) language
by talexb (Chancellor) on Aug 12, 2002 at 01:22 UTC |