summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2022-01-09 15:19:15 -0500
committerRobby Zambito <contact@robbyzambito.me>2022-01-09 15:19:15 -0500
commit6b8abcb826015c313c48ffef47dfa9d45bdeb58b (patch)
tree0f62db2b6b6a488b1178f5a2d806a73277100c1c
parentee970125d23aa61f200449911eca9284e51e53d9 (diff)
Remove extra print statements
-rw-r--r--game_of_21.scm7
1 files changed, 0 insertions, 7 deletions
diff --git a/game_of_21.scm b/game_of_21.scm
index 69ce762..757cfbe 100644
--- a/game_of_21.scm
+++ b/game_of_21.scm
@@ -72,13 +72,6 @@
; Problem 2
(define (stop-at max-num)
(lambda (my-hand opponent-up-card)
- (display "Should stop at ")
- (display max-num)
- (display "? ")
- (if (< (hand-total my-hand) max-num)
- (display "no")
- (display "yes"))
- (newline)
(< (hand-total my-hand) max-num)))
;(display (if (eq? 1