Fork of https://github.com/google/lisp-koans so that I could go through them. THIS CONTAINS ANSWERS.

extra-credit.lsp 324B

12345678
  1. ;; EXTRA CREDIT:
  2. ;;
  3. ;; Create a program that will play the Greed Game.
  4. ;; Rules for the game are in GREED_RULES.TXT.
  5. ;;
  6. ;; You already have a DiceSet class and score function you can use.
  7. ;; Write a player class and a Game class to complete the project. This
  8. ;; is a free form assignment, so approach it however you desire.