Help for this page

Select Code to Download


  1. or download this
    my $value =  $hash{$arg}
              // func $arg
              // 'default';
    
  2. or download this
    my $value =  $hash{$arg}
              // func($arg // 'default');
    
  3. or download this
    my $value =  $hash{$arg}
              // (func $arg)
              // 'default';
    
  4. or download this
    my $value =  $hash{$arg}
              // func($arg)
              // 'default';