clog/tutorial/13-tutorial/hello-clog/hello-clog.lisp
David Botton 73bc5bf10f style
2021-02-01 13:43:47 -05:00

13 lines
274 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 #P"www/")
(open-browser))