rainy-periods/src/weather_data/scratch.clj
Nils Norman Haukås 89561ec163 initial commit
2014-11-14 17:02:57 +01:00

17 lines
366 B
Clojure

;; Anything you type in here will be executed
;; immediately with the results shown on the
;; right.
(def init [[["test"]][["hello"]]])
(defn nested-array [x] (last (last x)))
(def x (conj (butlast init) [(conj (nested-array init) ["world"])]))
(conj (conj (nested-array init) ["world"]) (butlast init))
(conj x [["another world"]])
[[[1] [2]]
[[1] [3] [4]]]