Help for this page

Select Code to Download


  1. or download this
    switch (i) {
        0,1: foo();
        2: bar(); break;
        3: baz(); break;
    };
    
  2. or download this
    my $switch = Switch->new(
        [ '5', sub {} ], # Matches '005'
    ...
        [ sub { $foo->bar( @_ ) }, sub {} ] # coderef
        [ 1 .. 3, 8 .. 20, sub {} ] # Multiple cases
    );