Help for this page

Select Code to Download


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