summaryrefslogtreecommitdiffstats
path: root/makesans.tl
diff options
context:
space:
mode:
Diffstat (limited to 'makesans.tl')
-rwxr-xr-xmakesans.tl13
1 files changed, 13 insertions, 0 deletions
diff --git a/makesans.tl b/makesans.tl
new file mode 100755
index 0000000..bef6fc3
--- /dev/null
+++ b/makesans.tl
@@ -0,0 +1,13 @@
+#!/usr/bin/env txr
+
+; This script, makesans, uses sbcl to make sanssbcl, which can then
+; be copied to a Linux PC that doesn't have sbcl.
+
+(defun load-and-go ()
+ (load "demostuff.tl")
+ (load "menu")
+ (each ((i (range 1 9)))
+ (load `demo@i`))
+ (menu))
+
+(load-and-go)