Help for this page

Select Code to Download


  1. or download this
    my $c = $a // $b;
    
  2. or download this
    my $c = defined $a ? $a : $b;
    
  3. or download this
    my $x = $a // function ($b) // $ENV{FOO} // $self->bar // 0;