Skip to content

Commit

Permalink
Remove leftover debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
z-silver committed Nov 25, 2023
1 parent b39e6db commit 76c6927
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions util.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,15 @@
syntax->list
length
range)))
(let [(ret
#`(lambda [args ... name]
(unless (preds args)
(raise-argument-error name
(with-output-to-string
(lambda []
(write 'preds)))
n
args ...)) ...
body ...))]
(displayln (syntax->datum ret))
(newline)
ret))]))
#`(lambda [args ... name]
(unless (preds args)
(raise-argument-error name
(with-output-to-string
(lambda []
(write 'preds)))
n
args ...)) ...
body ...))]))

(module interfaces racket
(provide
Expand Down

0 comments on commit 76c6927

Please sign in to comment.