From 05b876bea755d3097d52695576e171b27b778f72 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Tue, 29 Jun 2021 21:38:48 +0100 Subject: [PATCH] add 'hello' function (for quick test after loading package). This is so I can make sure I know ritherdon-rest.lisp can/is loaded correctly -- via Quicklisp or ASDF -- and is ready to start adding the actual code. --- src/ritherdon-rest.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ritherdon-rest.lisp b/src/ritherdon-rest.lisp index 33ac6b8..bf1e3d9 100644 --- a/src/ritherdon-rest.lisp +++ b/src/ritherdon-rest.lisp @@ -2,4 +2,5 @@ (in-package #:ritherdon-rest) -(print "The system is up and running.") +(defun hello () + (print "The system is up and running."))