I am learning Haskell, so I'm writing some simple card games. I've defined some data types:
data Rank = Ace|Two|Three|Four|Five|Six|Seven|Eight|Nine|Ten|Jack|Queen|King deriving (Eq,Show,Ord)
data Suit = Hearts|Spades|Diamonds|Clubs deriving (Show)
data Card = Card Rank Suit
Now I'd like to create a pristine deck of 52 cards. I'm sure there is a slick way to do it, but all I can come up with is:
pristineDeck = [Card Ace Hearts, Card Two Hearts, ...]
Can I get Haskell to generate this list for me?
Showup there). The three of them: Rank, Suit and Card. – Alp Mestanogullari Jan 4 at 23:48