Help for this page

Select Code to Download


  1. or download this
        sub make_handle {
            ...
        }
    
        our $handle = make_handle(); # "... used only once"
    
  2. or download this
    sub foo {
        my $foo = shift;
        return undef unless defined $foo;
    ...
            defined $bar ? $bar : ($bar = shift);
        }
    }