Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Multiple Permutation handling

by toolic (Bishop)
on Mar 01, 2013 at 20:32 UTC ( [id://1021333]=note: print w/replies, xml ) Need Help??


in reply to Multiple Permutation handling

Loops aren't so bad, and sometimes they're efficient, too:
use warnings; use strict; for my $i (1 .. 5) { for my $shirt (qw(T S L H)) { for my $size (qw(S M L XL 2X)) { for my $col (qw(BLU GRN WHT BLK)) { print 'SKU', $i, $shirt, $size, $col, "\n"; } } } }

Show your code.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-26 00:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found