PERL- A love hate relationship

Sep 13, 2006 19:45



#!/usr/bin/perl
$flower{petal}=35;

while($flower{petal}>0){
if($flower{petal}%2==1){
print "I love it.\n";
}
else if($flower{petal}%2==0){
print "I love it not.\n";
}
$flower{petal}--;
}

Perl is one of the greatest programming languages ever. So much flexibility... such easy syntax... so many uses...

It also can be quite aggravating. a sinlge misplaced '$' symbol screwed up my program. Took an hour of work to find it.

At the end of the day, Perl is still kriffing awsome. Larry Wall deserves a Nobel Prize.
Previous post Next post
Up