rf-web/vendor/bundle/gems/rouge-3.12.0/lib/rouge/demos/hylang

11 lines
344 B
Plaintext
Raw Normal View History

2019-10-21 08:18:17 +00:00
(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)