7 lines
65 B
Common Lisp
7 lines
65 B
Common Lisp
; LISP
|
|
(DEFUN hello ()
|
|
(PRINT (LIST 'HELLO 'WORLD))
|
|
)
|
|
|
|
(hello)
|