mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2025-12-06 02:40:26 -08:00
8 lines
273 B
Common Lisp
8 lines
273 B
Common Lisp
(princ "======================================================================") (terpri)
|
|
|
|
(princ "We are now executing FILE1.LSP") (terpri)
|
|
|
|
(defun test-function (x y)
|
|
(format t "~D + ~D is equal to ~D~%" x y (+ x y)))
|
|
|
|
(princ "TEST-FUNCTION has been created") (terpri)
|