1
0
mirror of https://github.com/PDP-10/its.git synced 2026-03-03 10:22:59 +00:00
Files
PDP-10.its/src/hello/hello.lisp
Lars Brinkhoff 4b2f631a03 Rename Lisp dump script.
LOADER is for STINK scripts.
2023-09-08 09:04:28 +02:00

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))