A Casino game. No gambling, just skill!
- Play the game by running this code:
irb
require "./blackjack"
game = Game.new
game.hit
game.stand
- Change the Card's to_s to show "Q5" instead of 5-queen"
- Complete the Panda assignment
- If a player busts (goes over 21), the game should #standfor the player
- The dealer hand should not not show both cards until the player has stood (It should be like "XX", "Q5")
Copyright: Jesse Wolgamott, MIT License (See LICENSE)