Help for this page

Select Code to Download


  1. or download this
    sub do_something
    {
       my $file = shift || 'default';
    }
    
  2. or download this
    sub do_something
    {
       my $file = shift or
         warn "empty parameter\n";
    }