stubs for cs019 language

This commit is contained in:
Danny Yoo 2011-09-19 12:57:50 -04:00
parent 3b07160049
commit 713d023d1b
2 changed files with 15 additions and 0 deletions

6
cs019/cs019.rkt Normal file
View File

@ -0,0 +1,6 @@
#lang s-exp "../lang/whalesong.rkt"
;; Like the big whalesong language, but with additional ASL restrictions.
(provide (all-from-out "../lang/whalesong.rkt"))

9
cs019/lang/reader.rkt Normal file
View File

@ -0,0 +1,9 @@
#lang s-exp syntax/module-reader
;; http://docs.racket-lang.org/planet/hash-lang-planet.html
#:language (lambda (ip)
`(file ,(path->string cs019.rkt)))
(require racket/runtime-path)
(define-runtime-path cs019.rkt "../cs019.rkt")