mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 18:50:42 -08:00
15 lines
296 B
Common Lisp
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)
|
|
)
|