exercises and notes from "Gentle introduction"
This commit is contained in:
4
hello.lisp
Normal file
4
hello.lisp
Normal file
@@ -0,0 +1,4 @@
|
||||
(defun hello ()
|
||||
(write-line "What is your name?")
|
||||
(let ((name (read-line)))
|
||||
(format t "Hello, ~A.~%" name)))
|
||||
Reference in New Issue
Block a user