Help for this page

Select Code to Download


  1. or download this
    till (
      - /match0/ => \&doOtherProcessing,
    ...
      - /match2/ => \&doStage2,
      - /match3/ => \&doStage3,
    )
    
  2. or download this
    till (
      - /match0/ => sub { print "default Processing" },
      - yadda yadda ...
    )