Skip to content
/ chino Public

A Clojure wrapper for the Mozilla Rhino JavaScript engine

Notifications You must be signed in to change notification settings

hotwoofy/chino

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

chino

A Clojure wrapper for the Mozilla Rhino JavaScript engine.

Usage

user> (use 'chino.core)
user> (eval "2+2")
4.0
user> (eval "o = {a: 'Hello', b: 'World!'}")
{:b "World!", :a "Hello"}
user> ((eval "f = function greet(who) { return 'Hello, ' + who }") "World")
"Hello, World"
user> (eval {:a 1 :b 2} "a + b")
3.0
user> (eval {:a 1 :b 2 :add (fn [a b] (+ a b))} "add(a, b)")
3.0
user> (eval {:person {:name "Thom" :greet #(str "Hello, " (:name *this*))}} "person.greet()")
"Hello, Thom"

Mostly just see the tests though.

License

Copyright © 2013 Thom Lawrence

Distributed under the Eclipse Public License, the same as Clojure.

About

A Clojure wrapper for the Mozilla Rhino JavaScript engine

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published