diff options
author | Chouser <chouser@n01se.net> | 2008-10-06 04:31:05 +0000 |
---|---|---|
committer | Chouser <chouser@n01se.net> | 2008-10-06 04:31:05 +0000 |
commit | 5bf1c3b6afa467ffeaddafd8e35b3ca57046b375 (patch) | |
tree | 147cb5a76ebaff152725f42a441941b5fab308a2 /clojurescript/t06.cljs | |
parent | 85f7ac0486fc32702ac7dd6d931815100fa98d0f (diff) |
ClojureScript: clean up the Class class, prn can now print the print-method methodTable.
Diffstat (limited to 'clojurescript/t06.cljs')
-rw-r--r-- | clojurescript/t06.cljs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clojurescript/t06.cljs b/clojurescript/t06.cljs new file mode 100644 index 00000000..af3440c7 --- /dev/null +++ b/clojurescript/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)) |