diff --git a/exception.rkt b/exception.rkt deleted file mode 100644 index f25dc89..0000000 --- a/exception.rkt +++ /dev/null @@ -1,10 +0,0 @@ -#lang racket/base -(require (for-syntax racket/base)) - -(provide (all-defined-out)) - -(define-syntax (try stx) - (syntax-case stx () - [(_ body ... (except tests ...)) - #'(with-handlers (tests ...) body ...)])) -