1. Deal both user and computer a starting hand of 2 random card values.
    Created 1587720588.0
  2. Detect when computer or user has a blackjack. (Ace + 10 value card).
    Created 1587720865.0
  3. If computer gets blackjack, then the user loses (even if the user also has a blackjack). If the user gets a blackjack, then they win (unless the computer also has a blackjack).
    Created 1587746969.0
  4. Calculate the user's and computer's scores based on their card values.
    Created 1587720637.0
  5. If an ace is drawn, count it as 11. But if the total goes over 21, count the ace as 1 instead.
    Created 1587728607.0
  6. Reveal computer's first card to the user.
    Created 1587728746.0
  7. Game ends immediately when user score goes over 21 or if the user or computer gets a blackjack.
    Created 1587728658.0
  8. Ask the user if they want to get another card.
    Created 1587720728.0
  9. Once the user is done and no longer wants to draw any more cards, let the computer play. The computer should keep drawing cards unless their score goes over 16.
    Created 1587720955.0
  10. Compare user and computer scores and see if it's a win, loss, or draw.
    Created 1587720822.0
  11. Print out the player's and computer's final hand and their scores at the end of the game.
    Created 1587803637.0
  12. After the game ends, ask the user if they'd like to play again. Clear the console for a fresh start.
    Created 1587803719.0