anaphoric/it.rkt
2018-01-27 12:05:21 +01:00

12 lines
254 B
Racket

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