mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 10:31:34 -08:00
10 lines
153 B
Common Lisp
10 lines
153 B
Common Lisp
;;; keep sorted to recognize eventual name clashes
|
|
|
|
(defpackage ui
|
|
(:use :cl)
|
|
(:export
|
|
#:*main*))
|
|
|
|
(in-package :ui)
|
|
|
|
(defparameter *main* "main")
|