Tutorial 28 - Minimal CLOG Builder App

This commit is contained in:
David Botton 2022-01-27 22:31:30 -05:00
parent 2d0e2ab6c6
commit d3cabdc183
18 changed files with 20358 additions and 14 deletions

15
tutorial/28-tutorial.lisp Normal file
View file

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