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