diff options
author | Chouser <chouser@n01se.net> | 2009-01-12 07:54:16 +0000 |
---|---|---|
committer | Chouser <chouser@n01se.net> | 2009-01-12 07:54:16 +0000 |
commit | 2b1e44f04489b5d70faff703bf824f07b74432d2 (patch) | |
tree | 2bc686386c956028744f7411a4404f59efca9115 /clojurescript/tests/t06.cljs | |
parent | 6e53cf73c313d2bf76f5ee3c9a847548665b32e2 (diff) |
Rearrange ClojureScript code for AOT compilation and its eventual place in clojure.contrib. Also fix major breaking errors for Clojure SVN 1205, but it's not well tested with this latest version.
Diffstat (limited to 'clojurescript/tests/t06.cljs')
-rw-r--r-- | clojurescript/tests/t06.cljs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clojurescript/tests/t06.cljs b/clojurescript/tests/t06.cljs new file mode 100644 index 00000000..bfb06e8a --- /dev/null +++ b/clojurescript/tests/t06.cljs @@ -0,0 +1,8 @@ +(ns test) +(defn setText []) + +(prn :yo) +(prn (-> clojure .print-method .methodTable)) +(prn (JQuery "#nice")) +(prn (.ready ($ document) test/setText)) +(prn (+ 1 2 3 4)) |