- or download this
{
given ($foo) {
...
} continue {
... always executed ...
}
- or download this
given ($foo) {
when (/bar/) {...}
when (/baz/) {...}
}
... always executed ...
- or download this
my $foo = "bar";
my @foo = qw [foo bar baz];
given ($foo) {
when (@foo) {say "Match"}
}