mirror of
https://github.com/PDP-10/its.git
synced 2026-03-03 10:22:59 +00:00
9 lines
218 B
Common Lisp
9 lines
218 B
Common Lisp
;;; -*- lisp -*-
|
|
|
|
;; Hello world example for Maclisp. When this is compiled to HELLO
|
|
;; FASL, the file HELLO (DUMP) will dump out an executable program.
|
|
(defun hello ()
|
|
(princ "Hello Maclisp!")
|
|
(terpri)
|
|
(quit))
|