From: admin Date: Fri, 29 Sep 2023 11:55:02 +0000 (+0900) Subject: Bootstrap the system X-Git-Tag: v0.1.0~2 X-Git-Url: https://git.vouivredigital.com/?a=commitdiff_plain;h=12a06473b80bbf04dcee2718f69c856ae439c1c5;p=vouivre.git Bootstrap the system --- diff --git a/boot.scm b/boot.scm new file mode 100644 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)