mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 10:31:34 -08:00
9 lines
110 B
Common Lisp
9 lines
110 B
Common Lisp
(defpackage ui
|
|
(:use :cl :qml)
|
|
(:export
|
|
#:*label*))
|
|
|
|
(in-package :ui)
|
|
|
|
(defparameter *label* "label")
|
|
|