common-lisp-study/hello.lisp

5 lines
117 B
Common Lisp

(defun hello ()
(write-line "What is your name?")
(let ((name (read-line)))
(format t "Hello, ~A.~%" name)))