Updates to tuts and new with-sync-event

This commit is contained in:
David Botton 2022-02-10 20:44:11 -05:00
parent ec81e5fb2b
commit 18a5f8d78e
33 changed files with 157 additions and 104 deletions

View file

@ -40,8 +40,13 @@
(initialize #'on-new-window)
;; Set the function on-new-window to execute
;; everytime a browser connection to our app.
;; #' tells common lisp to pass the function
;; to intialize and not to execute it.
;; #' tells common lisp to pass the function.
;; If we pass the symbol 'on-new-window it
;; it will look each time for the function
;; represented by our symbol. This is generally
;; prefered in development as then we can
;; recompile our events while running ie. M-C-x
;; in emacs.
;; Open a browser to http://127.0.0.1:8080 - the default for CLOG apps
(open-browser))