Help for this page

Select Code to Download


  1. or download this
    sub multi_foreach(&@) {
      my $code = shift;
    ...
    }
    
    multi_foreach { say join ' ', @_ } \( @a, @b, @c );
    
  2. or download this
    sub multi_foreach(&@) {
      my $code = shift;
    ...
    }
    
    multi_foreach { say join ' ', @_ } \( @a, @b, @c );