- or download this
my $foo = getFoo() || '';
if ($foo =~ /bar/ ){ ... }
- or download this
my $foo = getFoo() ? 1 : 0;
if ( $foo ){ ... }
- or download this
$a // $b; # short for: defined($a) ?? $a :: $b
$pi //= 3;
...
my $foo = getFoo();
$foo //= '';
if( $foo eq "true" ){ ... }