clog/tutorial/13-tutorial/hello-clog/hello-clog.lisp
2021-03-18 19:00:42 -04:00

15 lines
350 B
Common Lisp

(defpackage #:hello-clog
(:use #:cl #:clog)
(:export start-app))
(in-package :hello-clog)
(defun on-new-window (body)
(create-div body :content "Hello World!")
(run body))
(defun start-app ()
(initialize #'on-new-window
:static-root (merge-pathnames "./www/"
(asdf:system-source-directory :hello-clog)))
(open-browser))