Help for this page

Select Code to Download


  1. or download this
        if (@wishes == 3) {
            print "The genie has granted all of your wishes\n";
        }
    
  2. or download this
        if (3 == @wishes) {
            print "The genie has granted all of your wishes\n";
        }
    
  3. 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";
    }