rf-web/vendor/bundle/gems/rouge-3.12.0/lib/rouge/demos/hylang
2019-10-21 10:18:17 +02:00

11 lines
344 B
Plaintext

(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)