]> git.vouivredigital.com Git - vouivre.git/commitdiff
Bootstrap the system
authoradmin <admin@vouivredigital.com>
Fri, 29 Sep 2023 11:55:02 +0000 (20:55 +0900)
committeradmin <admin@vouivredigital.com>
Fri, 29 Sep 2023 11:55:02 +0000 (20:55 +0900)
boot.scm [new file with mode: 0644]

diff --git a/boot.scm b/boot.scm
new file mode 100644 (file)
index 0000000..6009c4e
--- /dev/null
+++ b/boot.scm
@@ -0,0 +1,10 @@
+(define* (b #:optional test)
+  (load "misc.scm")
+  (load "curry.scm")
+  (load "compile-tree-il.scm")
+  (load "decompile-tree-il.scm")
+  (load "spec.scm")
+  (when test
+    (load "curry-tests.scm"))
+  (values))
+(b)