I have a file well call file.pl. It's a card sorting program. I need to create a lib fuction with part of the original file that shuffles the deck of cards. After it shuffles the first deck and deals a hand of cards I need it to call the shuffling function again before dealing another hand. I call the lib function file file-lib.pl.
here's the contents i have for file.pl
xxxxxxxxxxxxxxx xxxxxxxxxxxxxxx xxxxxxxxxxxxxxx xxxxxxxxxxxxx
And here are the contents for file-lib.pl
i realize some of this may not be what is considered good perl programming techniques. But I merely just want it to work.
here's the contents i have for file.pl
Code:
#!/usr/bin/perl
require 'file-lib.pl';
my @startingdeck = ("A H","2 H","3 H","4 H","5 H","6 H","7 H","8 H",
"9 H","10 H","J H","Q H","K H",
"A D","2 D","3 D","4 D","5 D","6 D","7 D","8 D",
"9 D","10 D","J D","Q D","K D",
"A C","2 C","3 C","4 C","5 C","6 C","7 C","8 C",
"9 C","10 C","J C","Q C","K C",
"A S","2 S","3 S","4 S","5 S","6 S","7 S","8 S",
"9 S","10 S","J S","Q S","K S");
push@startingdeck, @startingdeck;
print "@startingdeck[0..4]\n"
And here are the contents for file-lib.pl
Code:
sub shuffle(){
for my $x(0..99){
my @shuffle = (
shift(@startingdeck),
pop(@startingdeck),
shift(@startingdeck),
pop(@startingdeck),
shift(@startingdeck),
pop(@startingdeck),
shift(@startingdeck),
pop(@startingdeck),
);
}
}
1;
Comment