Help for this page

Select Code to Download


  1. or download this
    sub do_stuff1 {
        my $_ = shift;
        chomp;
        say;
    }
    
  2. or download this
    sub do_stuff1 {
        local *_;
        $_ = shift;
        ...
    }