1
0
mirror of https://github.com/PDP-10/its.git synced 2026-05-23 05:52:16 +00:00
Files
PDP-10.its/src/hello/hello.lisp
2020-09-27 19:53:51 +02:00

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