clog/tutorial/13-tutorial.lisp
cms d8c4d2d011 Edit the instructions in tutorial-13 for accuracy
It suggests moving the whole tutorial directory into somewhere that
asdf/quicklisp is going to search, but really all you need is the
project subdirectory. Also updates the hint to point directly to the
README.md
2021-02-05 11:23:25 +00:00

15 lines
549 B
Common Lisp

(defpackage #:clog-user
(:use #:cl #:clog)
(:export start-tutorial))
(in-package :clog-user)
(defun start-tutorial ()
"Start tutorial."
(format t "Tutorial 13 is a how to on building your own clog application.~%~
Copy the directory - ~A~%~
to your ~~/common-lisp directory or other asdf / quicklisp~%~
directory. Then follow the directions in the 13-tutorial/README.md ~%~
directory."
(merge-pathnames "./tutorial/13-tutorial/hello-clog/"
(asdf:system-source-directory :clog))))