618
know the features of your language
(lemmy.world)
Post funny things about programming here! (Or just rant about your favourite programming language.)
Perl has both
$a || $b
and$a // $b
.The
||
version is older and has the value of$b
if$a
is any false value includingundef
(which is pretty much Perl'snull
/nil
).The
//
version has the value of$b
iff$a
isundef
. Other "false" values carry through.Ruby took both "no
return
required" and "no final semicolon required" from Perl (if not a few other things), I think, but it seems that//
was Perl later borrowing Ruby's||
semantics. Interesting.i.e.
0 || 1
is1
in Perl but0
in Ruby. Perl can0 // 1
instead if the0
, which is a defined value, needs to pass through.