Help for this page

Select Code to Download


  1. or download this
    sub do_stuff1 {
        local $_ = shift;
        chomp;
        say;
    }
    
  2. or download this
    sub do_stuff1 {
        ${ local *_ } = shift;
        chomp;
        say;
    }
    
  3. or download this
    for (..., $tied, ...) {
       ...
       do_stuff1(...);
       ...
    }
    
  4. or download this
    for (..., substr($s, ...), ...) {
       ...
       do_stuff1(...);
       ...
    }