changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/app/gui/skel.lisp

changeset 54: 83f6c62bf2a8
parent: e62a6a0d5997
child: 301fd45bbe73
author: ellis <ellis@rwest.io>
date: Fri, 24 Nov 2023 21:12:36 -0500
permissions: -rw-r--r--
description: cleanup
1 (uiop:define-package :app/gui/skel
2  (:use :cl :std :std/gui :skel :skel/core/vc :skel/core/virt :skel/comp/make)
3  (:export :main))
4 
5 (in-package :app/gui/skel)
6 
7 (defun run ()
8  (print "OK"))
9 
10 (def-gui ()
11  (run))