Files
pipple/tests/cheese.ppl

9 lines
178 B
Plaintext
Raw Permalink Normal View History

2025-11-10 20:44:10 +11:00
(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!")