Oct21
Perl tip of the day: Don’t do “$c = $a || $b” to define $c based on definedness of $a, do “$c = $a // $b” instead (perl5.10 and higher).
Perl tip of the day: Don’t do “$c = $a || $b” to define $c based on definedness of $a, do “$c = $a // $b” instead (perl5.10 and higher).