whalesong/world/main.rkt
2011-07-21 15:20:59 -04:00

25 lines
562 B
Racket

#lang s-exp "../lang/js/js.rkt"
(require "../image.rkt")
(declare-implementation
#:racket "racket-impl.rkt"
#:javascript (
;; the raw implementation doesn't know anything about
;; Whalesong.
"raw-jsworld.js"
;; We add Whalesong-specific things here.
"kernel.js"
"js-impl.js"
)
#:provided-values (big-bang
on-tick
on-key
key=?
to-draw
stop-when))