module CardsLib class Card def initialize(face) @face = face end def face @face end end end