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.
40 lines
530 B
Racket
40 lines
530 B
Racket
#lang racket
|
|
(provide (all-from-out racket))
|
|
|
|
(module reader syntax/module-reader
|
|
br/ex/nothing/nothing)
|
|
|
|
#|
|
|
|
|
#lang racket
|
|
(provide (all-from-out racket))
|
|
|
|
(module reader racket/base
|
|
(provide read read-syntax))
|
|
|
|
|#
|
|
|
|
#|
|
|
|
|
(module nothing racket
|
|
(provide (all-from-out racket))
|
|
|
|
(module reader syntax/module-reader
|
|
br/ex/nothing))
|
|
|
|
|#
|
|
|
|
#|
|
|
|
|
#lang racket
|
|
|
|
(module reader syntax/module-reader
|
|
#:language '(submod br/ex/nothing semantics))
|
|
|
|
(module semantics racket
|
|
(provide (all-from-out racket)))
|
|
|
|
(sleep 100000)
|
|
|
|
|#
|