in reply to Re^12: printing unitialized value of the 'do BLOCK' (summary)
in thread printing unitialized value of the 'do BLOCK'
So yes if and unless are effectively expressions in the form of statements
They are not.
$ perl -c -e'my $x = if (f()) { g(); } else { h(); }' syntax error at -e line 1, near "= if" -e had compilation errors. $ perl -e'my $x = unless (f()) { g(); } else { h(); }' syntax error at -e line 1, near "= unless" -e had compilation errors.
if statements and unless statements are statements, not expressions.
if (w/o else) and (the always short-circuiting) and are supposed to do the same
They're not, and they don't.
$ perl -c -e'my $x = ( f() and g() );' -e syntax OK $ perl -c -e'my $x = ( if (f()) { g() } );' syntax error at -e line 1, near "( if" -e had compilation errors.
-MO=Concise shows opcodes, not operators. An if statement and an and expression often (but not always) use the and opcode, but that doesn't tell you anything relevant to this conversation.
Would you say an if statement in C and a while statement in C are the same thing because they both use the same branch opcode?
In short, you are begging the question. You are presuming an if statement does the same as an and expression to conclude that an if<c> statement does the same as an <c>and expression.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^14: printing unitialized value of the 'do BLOCK' (summary)
by rsFalse (Chaplain) on Dec 26, 2019 at 12:14 UTC | |
by LanX (Saint) on Dec 26, 2019 at 14:48 UTC | |
by ikegami (Patriarch) on Dec 27, 2019 at 06:16 UTC | |
by LanX (Saint) on Dec 27, 2019 at 17:20 UTC | |
by ikegami (Patriarch) on Dec 28, 2019 at 13:57 UTC | |
| |
by ikegami (Patriarch) on Dec 27, 2019 at 05:55 UTC |