- or download this
if (@wishes == 3) {
print "The genie has granted all of your wishes\n";
}
- or download this
if (3 == @wishes) {
print "The genie has granted all of your wishes\n";
}
- or download this
my $days_per_year = 365; # In case the number of days in a year chang
+es ;-)
...
if (@calendar < $days_per_year) {
warn "Hold on, Cinderella -- you're calendar isn't full yet.\n";
}