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