in reply to Re: What I am missing here
in thread What I am missing here
Perhaps a little bit easier using some perl idioms...
#DECK MAKER sub deck_maker { my @deck = (); #the deck for returning my @suits = qw( spades hearts diamonds clubs ); my @cards = ( 2..10, qw(J Q K A) ); for my $suit ( @suits ) { for my $card ( @cards ) { my $newcard = "$card of $suit"; push(@deck, $newcard); } } return @deck; #return the new deck }
--MidLifeXis
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: What I am missing here
by tobyink (Canon) on Mar 20, 2012 at 21:31 UTC | |
by heatblazer (Scribe) on Mar 21, 2012 at 05:21 UTC | |
by tobyink (Canon) on Mar 23, 2012 at 22:44 UTC | |
|
Re^3: What I am missing here
by heatblazer (Scribe) on Mar 21, 2012 at 05:17 UTC | |
by heatblazer (Scribe) on Mar 21, 2012 at 05:28 UTC |