aboutsummaryrefslogtreecommitdiff
path: root/clojurescript/t03.cljs
diff options
context:
space:
mode:
Diffstat (limited to 'clojurescript/t03.cljs')
-rw-r--r--clojurescript/t03.cljs14
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)