Help for this page

Select Code to Download


  1. or download this
    my $start_with = another_value()
          or return mywarn("Could not get another value");
    
  2. or download this
    sub mywarn {
        warn $_ for @_;
        return;
    };