Help for this page

Select Code to Download


  1. or download this
    my %access = ('foo' => 0, 'bar' => 123);
    print $access{'foo'} || $access{'bar'}; # prints 123
    
  2. or download this
    my %access = ('foo' => 0, 'bar' => 123);
    print $access{'foo'} // $access{'bar'}; # prints 0