work in progress: stand-alone demo app

This commit is contained in:
Helmut Merz 2024-06-01 11:13:11 +02:00
parent 99b1627bfa
commit 74c87216e4
4 changed files with 25 additions and 1 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
test.db test.db
bin

10
app/demo/main.lisp Normal file
View file

@ -0,0 +1,10 @@
;;;; cl-scopes/app/demo/main - sample main program
(defpackage :scopes/app/demo
(:use :common-lisp)
(:export #:main))
(in-package :scopes/app/demo)
(defun main()
(format t "~%Hello World~%"))

13
scopes-demo.asd Normal file
View file

@ -0,0 +1,13 @@
(in-package #:asdf-user)
(defsystem :scopes-demo
:author "cyberconcepts.org Team <team@cyberconcepts.org>"
:license "MIT"
:version "0.0.1"
:homepage "https://www.cyberconcepts.org"
:description ""
:components ((:file "app/demo/main"))
:build-operation "program-op"
:build-pathname "app/demo/bin/demo"
:entry-point "scopes/app/demo:main")

View file

@ -1,4 +1,4 @@
;;; cl-scopes/testing ;;;; cl-scopes/testing
;;;; simple testing library ;;;; simple testing library