Help for this page

Select Code to Download


  1. or download this
    my $start_with = another_value()
       or ( warn("Could not get another value"), return );
    
  2. or download this
    my $start_with = another_value()
       or warn("Could not get another value"), return;
    
  3. or download this
    my $start_with = another_value()
       or warn "Could not get another value", return;