www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

in.rkt (241B)


      1 #lang racket/base
      2 
      3 (provide in)
      4 
      5 (require racket/stxparam
      6          (for-syntax racket/base))
      7 
      8 (define-syntax-parameter in
      9   (λ (stx)
     10     (raise-syntax-error
     11      'in
     12      "used out of context. It can only be used in some forms."
     13      stx)))