anaphoric/it.rkt
2017-11-16 17:35:26 +01:00

11 lines
215 B
Racket

#lang racket
(provide it)
(require racket/stxparam)
(define-syntax-parameter it
(λ (stx)
(raise-syntax-error
'it
"Use of the \"it\" identifier is only allowed within anaphoric macros."
stx)))