call function

This commit is contained in:
deanturpin 2016-05-24 00:13:01 +01:00
parent f153ec75f8
commit 3b36efd8d8

View File

@ -1,4 +1,6 @@
; LISP
(DEFUN HELLO-WORLD ()
(DEFUN hello ()
(PRINT (LIST 'HELLO 'WORLD))
)
(hello)