(ns dk.0x154f8ac.hello
(:gen-class))
(defn say-hello "Be polite"
([]
(println "Hello, World!")
(say-hello)))
(defn -main "Do the stuff"
[& args]
(say-hello))
(ns dk.0x154f8ac.hello
(:gen-class))
(defn say-hello "Be polite"
([]
(println "Hello, World!")
(say-hello)))
(defn -main "Do the stuff"
[& args]
(say-hello))