From 010895331decd1d8d7f2b8d5d5c781d0fa32598e Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 5 Feb 2026 03:59:43 +0000 Subject: [PATCH] examples: Added an example for hello world --- examples/hello-world.lisp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 examples/hello-world.lisp diff --git a/examples/hello-world.lisp b/examples/hello-world.lisp new file mode 100644 index 0000000..46b3108 --- /dev/null +++ b/examples/hello-world.lisp @@ -0,0 +1,14 @@ +;;; hello-world.lisp - 2026-02-04 + +;; Copyright (C) 2026 Aryadev Chavali + +;; This program is distributed in the hope that it will be useful, but WITHOUT +;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +;; FOR A PARTICULAR PURPOSE. See the GNU General Public License Version 2 for +;; details. + +;; You may distribute and modify this code under the terms of the GNU General +;; Public License Version 2, which you should have received a copy of along with +;; this program. If not, please go to . + +(display "Hello, world!")