trying to test out the js binding stuff

This commit is contained in:
Danny Yoo 2012-03-04 18:24:57 -05:00
parent 60387d58e5
commit cf40b06d69
2 changed files with 14 additions and 0 deletions

11
examples/js-binding.rkt Normal file
View File

@ -0,0 +1,11 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/js))
(define js-plus
(js-function (js-eval "function(x, y) { return x + y; }")))
(define js-minus
(js-function (js-eval "function(x, y) { return x - y; }")))
"plus: " (js-plus 3 4)
"minus:" (js-minus 239748 23)

View File

@ -21,6 +21,9 @@
js-eval
load-script
js-function
js-async-function
)
(define (alert x)