Help for this page

Select Code to Download


  1. or download this
    sub f {
        length or $_ = "default value" for
            my $var = shift;
        do_something_with($var);
    }
    
  2. or download this
    sub f {
        my $var = shift;
    ...
        }
        ...
    }