Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 181 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 181 Bytes

Baccaruby

Baccarat implementation in ruby.

n_decks = 6
cards = (Deck.new(BaccaratRules::CARD_VALUES).cards * n_decks).shuffle
b = Baccarat.new(cards)
b.play
b.print