mirror of
https://github.com/PDP-10/its.git
synced 2026-05-23 05:52:16 +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 LOADER will dump out an executable program.
|
|
(defun hello ()
|
|
(princ "Hello Maclisp!")
|
|
(terpri)
|
|
(quit))
|