phc-toolkit/in.rkt
2017-04-27 23:38:55 +02:00

13 lines
241 B
Racket

#lang racket/base
(provide in)
(require racket/stxparam
(for-syntax racket/base))
(define-syntax-parameter in
(λ (stx)
(raise-syntax-error
'in
"used out of context. It can only be used in some forms."
stx)))