From 713d023d1b7eaddfbc2580baf1ce1dd38f13658c Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Mon, 19 Sep 2011 12:57:50 -0400 Subject: [PATCH] stubs for cs019 language --- cs019/cs019.rkt | 6 ++++++ cs019/lang/reader.rkt | 9 +++++++++ 2 files changed, 15 insertions(+) create mode 100644 cs019/cs019.rkt create mode 100644 cs019/lang/reader.rkt diff --git a/cs019/cs019.rkt b/cs019/cs019.rkt new file mode 100644 index 0000000..938a8eb --- /dev/null +++ b/cs019/cs019.rkt @@ -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")) \ No newline at end of file diff --git a/cs019/lang/reader.rkt b/cs019/lang/reader.rkt new file mode 100644 index 0000000..84535e0 --- /dev/null +++ b/cs019/lang/reader.rkt @@ -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")