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