Help for this page

Select Code to Download


  1. or download this
    my @actions = (
      qr/thingy(with)parens(to)boot/ => sub { do this },
      qr/smile(and)frown/ => [sub { do this }, sub {and this }],
      qr/another(one)bites(the)dust)/ => undef,
    );
    
  2. or download this
    $_ = some line;
    my @tmp = @actions;
    ...
        last;
      }
    }