Help for this page

Select Code to Download


  1. or download this
    my $text = "I am going to walk to the park.";
    
    ...
        if    (lc $_ eq "walk") { print "Walking is good for you\n"; }
        elsif (lc $_ eq "park") { print "Parks are fun\n"; }
    }
    
  2. or download this
    my %react_to = (
        walk => sub { print "Walking is good for you\n" },
    ...
            $reaction->();
        }
    }
    
  3. or download this
    my %react_to = (
        a => sub { shift->{b} = sub { print "A before B\n" } },
    ...
            $reaction->(\%react_to);
        }
    }