aboutsummaryrefslogtreecommitdiff
path: root/src/SYSTEM.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/SYSTEM.lisp')
-rw-r--r--src/SYSTEM.lisp27
1 files changed, 26 insertions, 1 deletions
diff --git a/src/SYSTEM.lisp b/src/SYSTEM.lisp
index 468645a..5b30a31 100644
--- a/src/SYSTEM.lisp
+++ b/src/SYSTEM.lisp
@@ -1,6 +1,5 @@
1;;;; SYSTEM.lisp 1;;;; SYSTEM.lisp
2;;;; Entrypoint for SYSTEM 2;;;; Entrypoint for SYSTEM
3;;;; AUTHOR:
4 3
5;; --------------------------------------------------------------------- 4;; ---------------------------------------------------------------------
6;;; Package Definition 5;;; Package Definition
@@ -24,3 +23,29 @@
24 "Entrypoint for SYSTEM." 23 "Entrypoint for SYSTEM."
25 (format t "SYSTEM Version: ~A" *version*) 24 (format t "SYSTEM Version: ~A" *version*)
26 "SYSTEM") 25 "SYSTEM")
26
27
28;; ---------------------------------------------------------------------
29;;; Copyright Notice
30;; -----------------
31;; Copyright © 2024 <copyright holders>
32;;
33;; Permission is hereby granted, free of charge, to any person obtaining
34;; a copy of this software and associated documentation files
35;; (the “Software”), to deal in the Software without restriction,
36;; including without limitation the rights to use, copy, modify, merge,
37;; publish, distribute, sublicense, and/or sell copies of the Software,
38;; and to permit persons to whom the Software is furnished to do so,
39;; subject to the following conditions:
40;;
41;; The above copyright notice and this permission notice shall be
42;; included in all copies or substantial portions of the Software.
43;;
44;; THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
45;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
46;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
47;; IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
48;; CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
49;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
50;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
51;; ---------------------------------------------------------------------