(1 2 false)
["ham biscuit" 7 (1 2 3)]
{"key" "value", 1 true}
(1 2 false)
["ham biscuit" 7 (1 2 3)]
{"key" "value", 1 true}
(println "Hello friends!")
(doseq [technology ["Vert.x" "Netty"]] (println technology "is the bomb."))
(import '[java.util.concurrent CountDownLatch TimeUnit]) (let [latch (CountDownLatch. 1) thread (Thread. (fn [] (println "Thread started") (.countDown latch)))] (.start thread) (.await latch 10 TimeUnit/SECONDS))