work in progress: stand-alone demo app
This commit is contained in:
parent
99b1627bfa
commit
74c87216e4
4 changed files with 25 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
test.db
|
test.db
|
||||||
|
bin
|
||||||
|
|
10
app/demo/main.lisp
Normal file
10
app/demo/main.lisp
Normal 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
13
scopes-demo.asd
Normal 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")
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
;;; cl-scopes/testing
|
;;;; cl-scopes/testing
|
||||||
|
|
||||||
;;;; simple testing library
|
;;;; simple testing library
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue