Help for this page

Select Code to Download


  1. or download this
    sub strip { s/\A\s+//, s/\s+\z// for my @r = @_; @r }
    
  2. or download this
    sub strip {
        s/\A\s+//, s/\s+\z// for my @r = @_;
        @r
    }
    
  3. or download this
    for ( 1 .. 3 ) {
        run_fork { child {
    ...
            exit;
        } }
    }