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