in reply to Coding styles using if/else

I think this is still not as good style as it could be, personally I don't like if/else for debugging as it apears convoluted to me, I would think this would be better:
exit "Sorry, name can't be empty" if $name eq '' ; print "Thank you, $name. Your submission is complete.";
IMHO printing for an error message is bad practice, let a function or a module take care of it, and exit (or better yet die, or croak) with a code or a message.

UPDATE
I didn't know exit() was CORE:: -- news to me. use die instead as said below, I thought this was a user func.



Evan Carroll
www.EvanCarroll.com

Replies are listed 'Best First'.
Re^2: Coding styles using if/else
by shmem (Chancellor) on Apr 05, 2007 at 23:09 UTC
    You wrote
    I would think this would be better:
    exit "Sorry, name can't be empty" if $name eq '' ;

    It's not, as per perldoc -f exit

    exit EXPR
    exit Evaluates EXPR and exits immediately with that value. Example:
    ...

    Your code does exit 0 if $name eq '' which may or may not be what is intended, but what looks like a message being printed - isn't. Try at your shell

    perl -e 'exit "foo"'; echo $?

    --shmem

    _($_=" "x(1<<5)."?\n".q·/)Oo.  G°\        /
                                  /\_¯/(q    /
    ----------------------------  \__(m.====·.(_("always off the crowd"))."·
    ");sub _{s./.($e="'Itrs `mnsgdq Gdbj O`qkdq")=~y/"-y/#-z/;$e.e && print}
      For this kind of usage, with an error message, he should use die instead of exit.