Help for this page

Select Code to Download


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