diff options
Diffstat (limited to 'run.tl')
-rwxr-xr-x | run.tl | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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) |