-
-
Save nkoguro/8e5e124837e5ae67a0b8a79e4bb0d218 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define counter 0) | |
(define (main args) | |
(let loop () | |
(guard (e (else (print "catch!") | |
(raise e))) | |
(inc! counter) | |
(if (< counter 10) | |
(loop) | |
(error "err")))) | |
0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment