From 74371302593ee2ee365e697911c364246f460b63 Mon Sep 17 00:00:00 2001 From: nea Date: Thu, 10 Aug 2023 01:37:33 +0200 Subject: Add builtins --- test/src/TestLisp.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test/src') diff --git a/test/src/TestLisp.kt b/test/src/TestLisp.kt index f986f1c..7a520fb 100644 --- a/test/src/TestLisp.kt +++ b/test/src/TestLisp.kt @@ -1,4 +1,3 @@ -import moe.nea.lisp.CoreBindings import moe.nea.lisp.LispExecutionContext import moe.nea.lisp.LispParser import java.io.File @@ -8,7 +7,7 @@ object T fun main() { val otherP = LispParser.parse(File(T::class.java.getResource("/test.lisp")!!.file)) val executionContext = LispExecutionContext() + executionContext.setupStandardBindings() val bindings = executionContext.genBindings() - CoreBindings.offerAllTo(bindings) executionContext.executeProgram(bindings, otherP) } -- cgit