Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 285 Bytes

File metadata and controls

11 lines (10 loc) · 285 Bytes
(defn main []
     (println "What's your name?")
     (let [your_name (read-line)]
          (println (str "Hey " your_name ", you rock!"))))

(defn main2 []
       (println "What's your name?")
       (def _name (read-line))
       (println (str "Hey " _name ", you rock!")))