-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathloop.lisp
More file actions
26 lines (23 loc) · 1.55 KB
/
Copy pathloop.lisp
File metadata and controls
26 lines (23 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
;;; Copyright (c) 2026 Nicholas Vermeulen
;;; SPDX-License-Identifier: AGPL-3.0-or-later
;; ─────────────────────────────────────────────────────────────────────────────
;; loop.lisp — Entry point (loads everything once)
;; ─────────────────────────────────────────────────────────────────────────────
(load "loop-core.lisp")
(load "loop-questions.lisp")
(load "loop-soul.lisp")
(print "")
(print "╔════════════════════════════════════╗")
(print "║ L O O P v0.6 ║")
(print "║ A memory vessel for the living. ║")
(print "╚════════════════════════════════════╝")
(print "")
(print " (loop-start \"Name\") — begin new interview")
(print " (loop-say \"...\") — give a response")
(print " (loop-pause) — save and pause")
(print " (loop-resume \"id\") — resume a session")
(print " (loop-status) — current session info")
(print " (loop-sessions) — list all sessions")
(print " (loop-remember) — keep the portrait + witness")
(print " (loop-integrity \"id\") — has anything changed since it was said?")
(print "")