summaryrefslogtreecommitdiff
path: root/test/src/TestLisp.kt
diff options
context:
space:
mode:
Diffstat (limited to 'test/src/TestLisp.kt')
-rw-r--r--test/src/TestLisp.kt7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/src/TestLisp.kt b/test/src/TestLisp.kt
index 5563042..fa90468 100644
--- a/test/src/TestLisp.kt
+++ b/test/src/TestLisp.kt
@@ -8,7 +8,10 @@ fun main() {
val otherP = LispParser.parse(File(T::class.java.getResource("/test.lisp")!!.file))
val executionContext = LispExecutionContext()
executionContext.setupStandardBindings()
- executionContext.registerModule("secondary", LispParser.parse(File(T::class.java.getResource("/secondary.lisp")!!.file)))
+ executionContext.registerModule(
+ "secondary",
+ LispParser.parse(File(T::class.java.getResource("/secondary.lisp")!!.file))
+ )
val bindings = executionContext.genBindings()
- executionContext.executeProgram(bindings, otherP)
+ println("The results are in: ${executionContext.runTests(otherP, bindings)}")
}