pub type PQLSuit = Suit;
Card suit (spade, heart, diamond, club).
pub enum PQLSuit { S = 0, H = 1, D = 2, C = 3, }
Spades.
Hearts.
Diamonds.
Clubs.