Help for this page

Select Code to Download


  1. or download this
    use Algorithm::Loops qw( NestedLoops );
    
    ...
       my %args = @_;
       print(join(', ', map { "$_ => $args{$_}" } keys %args), "\n");
    }
    
  2. or download this
    use Algorithm::Loops qw( NestedLoops );
    
    ...
    sub function {
       print(join(', ', @_), "\n");
    }