Pose question: What is the simplest hello world code in Clojure "Hello world" You could define a function ```(defn hello [] "Hello World!") ``` Or a more generic approach would be ```(defn message [text] (if (string? text) text (str text))) ```