nicojensen.de/vendor/bundle/gems/rouge-3.3.0/lib/rouge/demos/hylang
Nico Jensen b59a203dbb Init
Init commit
2019-03-12 13:49:49 +01:00

10 lines
344 B
Text

(defn simple-conversation []
(print "Hello! I'd like to get to know you. Tell me about yourself!")
(setv name (input "What is your name? "))
(let [age (input "What is your age? ")]
(if (and age
name)
(print (+ "Hello " name "! I see you are "
age " years old.")))))
(simple-conversation)