Help for this page

Select Code to Download


  1. or download this
    for( qw( foo bar baz ) ){
    
        print "yep" and last if $test eq $_;
    }
    
  2. or download this
    print "yep" and last if $test eq $_ for( qw( foo bar baz ) );
    
  3. or download this
    do { print "yep"; last; } if $test eq $_ for( qw( foo bar baz ) );