From b6e326390e23f7f1ab0c112f160e7077059575f6 Mon Sep 17 00:00:00 2001 From: Evgeny Ilyushkin Date: Sun, 1 Oct 2017 22:42:06 +0200 Subject: [PATCH] Updated for Common Lisp --- hello_world.lisp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hello_world.lisp b/hello_world.lisp index 7a8ecc8..9861d6f 100644 --- a/hello_world.lisp +++ b/hello_world.lisp @@ -1 +1,5 @@ -(print "Hello, world!") +;; to run, use "sbcl --script hello_world.lisp", for example +(write-line "Hello World") +(quit) + +;; use (print "Hello, world!") to output the sting with the double-quotes and escape characters to serve as input