Remove dead code

This commit is contained in:
Kodi Arfer 2019-08-02 17:16:43 -04:00
parent 419558ef54
commit bc524daee8

View File

@ -31,7 +31,6 @@
(assert (= acc [walk-form]))) (assert (= acc [walk-form])))
(defn test-walk-iterators [] (defn test-walk-iterators []
(setv acc [])
(assert (= (walk (fn [x] (* 2 x)) (fn [x] x) (assert (= (walk (fn [x] (* 2 x)) (fn [x] x)
(drop 1 [1 [2 [3 [4]]]])) (drop 1 [1 [2 [3 [4]]]]))
[[2 [3 [4]] 2 [3 [4]]]]))) [[2 [3 [4]] 2 [3 [4]]]])))