adding a wescheme language for the repl, which automatically imports the image library.
This commit is contained in:
parent
5e0cc5f6ec
commit
f55c15e0d7
4
whalesong/wescheme/lang/reader.rkt
Normal file
4
whalesong/wescheme/lang/reader.rkt
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#lang s-exp syntax/module-reader
|
||||||
|
#:language (lambda (ip) `(file ,(path->string semantics-path)))
|
||||||
|
(require racket/runtime-path)
|
||||||
|
(define-runtime-path semantics-path "semantics.rkt")
|
7
whalesong/wescheme/lang/semantics.rkt
Normal file
7
whalesong/wescheme/lang/semantics.rkt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#lang whalesong
|
||||||
|
|
||||||
|
(require whalesong/image
|
||||||
|
whalesong/lang/whalesong)
|
||||||
|
|
||||||
|
(provide (all-from-out whalesong/lang/whalesong)
|
||||||
|
(all-from-out whalesong/image))
|
Loading…
Reference in New Issue
Block a user