blob: bf9db3b4133440856bd89941af3b62dd69ededeb (
plain)
1
2
3
4
5
6
7
8
9
10
|
(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)
|