Help for this page

Select Code to Download


  1. or download this
    # before Damian's book I'd have used EOREPLY
    my $reply_to_chester = <<'END_REPLY_TO_CHESTER';
    
  2. or download this
    sub do_stuff {
        my $self = shift;
    ...
        # Bear with me and assume I'll need $items again...
        for my $item (@$items) {
            # etc...
    
  3. or download this
    sub do_stuff {
        my $self = shift;
        alias my @items = @{ $self->{items} };
        for my $item (@items) {
            # etc...
    
  4. or download this
    END_REPLY_TO_CHESTER