You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
beautiful-racket/beautiful-racket/br/demo/wires/main.rkt

10 lines
280 B
Racket

#lang br/quicklang
(module+ reader
(provide read-syntax))
(define (read-syntax path port)
(define wire-strs (port->lines port))
(define wire-datums (format-datums '(wire ~a) wire-strs))
(strip-context
#`(module wires-mod br/demo/wires/expander
#,@wire-datums)))