4 lines
89 B
Text
4 lines
89 B
Text
(defun keep-printing-spam ()
|
|
(while t
|
|
(display "SPAM")
|
|
(newline) ) )
|