summaryrefslogtreecommitdiff
path: root/test/src
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-08-09 16:18:48 +0200
committernea <nea@nea.moe>2023-08-09 16:18:48 +0200
commitb530d6360308ac1f68cf2508fa5bd4a085a8bec0 (patch)
tree4b966250615700983bb9172f10d7ecafbefece56 /test/src
downloadnealisp-b530d6360308ac1f68cf2508fa5bd4a085a8bec0.tar.gz
nealisp-b530d6360308ac1f68cf2508fa5bd4a085a8bec0.tar.bz2
nealisp-b530d6360308ac1f68cf2508fa5bd4a085a8bec0.zip
Initial commit
Diffstat (limited to 'test/src')
-rw-r--r--test/src/TestLisp.kt14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/src/TestLisp.kt b/test/src/TestLisp.kt
new file mode 100644
index 0000000..f986f1c
--- /dev/null
+++ b/test/src/TestLisp.kt
@@ -0,0 +1,14 @@
+import moe.nea.lisp.CoreBindings
+import moe.nea.lisp.LispExecutionContext
+import moe.nea.lisp.LispParser
+import java.io.File
+
+object T
+
+fun main() {
+ val otherP = LispParser.parse(File(T::class.java.getResource("/test.lisp")!!.file))
+ val executionContext = LispExecutionContext()
+ val bindings = executionContext.genBindings()
+ CoreBindings.offerAllTo(bindings)
+ executionContext.executeProgram(bindings, otherP)
+}