Help for this page

Select Code to Download


  1. or download this
    my $type = "add";
    my $redo = {
    ...
      }->{$type}
      || "wiki_noneoftheabove7";
    print "With type: $type, we could redo: $redo \n";
    
  2. or download this
    my $type = "add";
    my $redo;
    ...
      default { $redo = "wiki_noneoftheabove7" }
    }
    print "With type: $type, we could redo: $redo \n";
    
  3. or download this
    my $type = "add";
    my $redo;
    ...
      default { $redo = "wiki_noneoftheabove7" }
    }
    print "With type: $type, we could redo: $redo \n";
    
  4. or download this
    my $type = "add";
    my $redo = given ($type) {
    ...
      default { "wiki_noneoftheabove7" }
    };
    print "With type: $type, we could redo: $redo \n";