9 lines
178 B
Plaintext
9 lines
178 B
Plaintext
(let in "no")
|
|
(while (!= in "yes")
|
|
(print "Do you like cheese?")
|
|
(set in (input))
|
|
(if (!= in "yes")
|
|
(print "That is sad")
|
|
)
|
|
)
|
|
(print "Awesome! I do too!") |