10 lines
247 B
Scheme
10 lines
247 B
Scheme
|
; Copyright (c) 1993-1999 by Richard Kelsey and Jonathan Rees. See file COPYING.
|
||
|
|
||
|
|
||
|
(define-syntax loophole
|
||
|
(syntax-rules ()
|
||
|
((loophole ?type ?form)
|
||
|
(begin (lambda () ?type) ;Elicit unbound-variable warnings, etc.
|
||
|
?form))))
|
||
|
|