Help for this page

Select Code to Download


  1. or download this
    sub blah {
        my %args = @_;
        ...
    }
    
  2. or download this
    blah(qw(continue 0 next 1 redo 2 last 3));
    blah('continue', 0, 'next', 1, 'redo', 2, 'last', 3);
    ...
    
    my %h = (continue => 0, next => 1, redo => 2, last => 3);
    blah(%h);