Help for this page

Select Code to Download


  1. or download this
    {
      no warnings 'exiting';
    ...
        3       => sub { print "bla2" }
        for (3);
    }
    
  2. or download this
    switch
      [1,2,3] => sub { print "bla" ; { no warnings 'exiting'; next } },
      3       => sub { print "bla2" }
      for (3);
    
  3. or download this
    sub goNext { no warnings 'exiting'; next }
    switch
      [1,2,3] => sub { print "bla" ; goNext },
      3       => sub { print "bla2" }
      for (3);