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/t03.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/t03.cljs')
-rw-r--r-- | clojurescript/t03.cljs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/clojurescript/t03.cljs b/clojurescript/t03.cljs deleted file mode 100644 index 3937cfa7..00000000 --- a/clojurescript/t03.cljs +++ /dev/null @@ -1,14 +0,0 @@ -(ns net.n01se) - -(def x 5) -(def y 10) - -(defn bind-test [] - (when (= x 2) - (set! y 90)) - (binding [x (dec x) y (inc y)] - (when (pos? x) - (bind-test))) - (prn x y)) - -(bind-test) |