Help for this page

Select Code to Download


  1. or download this
    my $start_with = another_value or do {
        warn "Could not get another value";
        return;
    };
    
  2. or download this
    do {
        warn "Could not get another value";
        return;
    } unless my $start_with = another_value;