clog/test/test-clog.lisp
2020-12-15 21:46:08 -05:00

15 lines
296 B
Common Lisp

(defpackage #:test-clog
(:use #:cl #:clog)
(:export test on-connect))
(in-package :test-clog)
(defun on-connect (id)
(alert-box id "We are here"))
(defun test ()
(print "Init connection")
(initialize #'on-connect :boot-file "/debug.html")
(print "Open browser")
(open-browser)
)