Help for this page
my $c = $a // $b;
my $c = defined $a ? $a : $b;
my $x = $a // function ($b) // $ENV{FOO} // $self->bar // 0;