clojurefx/.lein-repl-history

13 lines
238 B
Plaintext
Raw Normal View History

2013-08-28 18:15:12 +00:00
(def blahref '{a 1 b 2})
(get blahref 'a)
(def x (symbol "abc"))
(def y (symbol "abc"))
(= x y)
(split "abc-def" #"-")
(use 'clojure.string)
(split "abc-def" #"-")
(first "bvc")
(apply str (list "abc" "Def"))
(cons (list 1 2 3) 4)
(quit)