summaryrefslogtreecommitdiffstats
path: root/run.tl
diff options
context:
space:
mode:
Diffstat (limited to 'run.tl')
-rwxr-xr-xrun.tl13
1 files changed, 13 insertions, 0 deletions
diff --git a/run.tl b/run.tl
new file mode 100755
index 0000000..f2b839b
--- /dev/null
+++ b/run.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")
+ (load "menu")
+ (each ((i (range 1 9)))
+ (load `demo@i`))
+ (menu))
+
+(load-and-go)