www

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

dot-lang.rkt (218B)


      1 #lang typed/racket
      2 
      3 (provide dot λdot)
      4 
      5 (define-syntax (dot stx)
      6   (raise-syntax-error 'dot "Dot is not implemented yet" stx))
      7 
      8 (define-syntax (λdot stx)
      9   (raise-syntax-error 'dot "Dot is not implemented yet" stx))