adding a wescheme language for the repl, which automatically imports the image library.

This commit is contained in:
Danny Yoo 2013-03-04 12:51:35 -07:00
parent 5e0cc5f6ec
commit f55c15e0d7
2 changed files with 11 additions and 0 deletions

View 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")

View 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))