Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^3: Massive expansion of a hash of arrays?

by Athanasius (Archbishop)
on Jul 19, 2014 at 08:09 UTC ( [id://1094288]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    perl -slw
    
  2. or download this
    print join ' ', @_;
    
  3. or download this
    print join(' ', @_), "\n";
    
  4. or download this
    sub nForX(&@)
    
  5. or download this
    &nForX( $code, $n-1, @_, $i );
    
  6. or download this
    \( @a, @b, @c )
    
  7. or download this
    for my $i (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
    {
        &nForX($code, 2, \@b, \@c, $i);
    }
    
  8. or download this
    &nForX($code, 2, \@b, \@c, 1);
    
  9. or download this
    for my $i ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l',
    + 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'
    +)
    {
        &nForX($code, 1, \@c, 1, $i);
    }
    
  10. or download this
    &nForX($code, 1, \@c, 1, 'a');
    
  11. or download this
    for my $i ('!', '"', '#', '$', '%', '&', "'", '(', ')', '*', '+', ',',
    + '-', '.', '/')
    {
        &nForX($code, 0, 1, 'a', $i);
    }
    
  12. or download this
    &nForX($code, 0, 1, 'a', '!');
    
  13. or download this
    return print join ' ', 1, 'a', '!';
    
  14. or download this
    &nForX($code, 0, 1, 'a', '"');
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1094288]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (2)
As of 2024-04-26 02:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found