Help for this page

Select Code to Download


  1. or download this
    my $d;
    foreach ($d = 'Shakespear is the food') {
        s/foo/bar/;
    }
    
  2. or download this
    (sub { $_[0] =~ s/foo/bar/ })->(my $d = 'Shakespear is the food');