From 12a06473b80bbf04dcee2718f69c856ae439c1c5 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 29 Sep 2023 20:55:02 +0900 Subject: [PATCH] Bootstrap the system --- boot.scm | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 boot.scm 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) -- 2.39.2