summaryrefslogtreecommitdiff
path: root/test/programs/index.ts
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-02-23 17:27:16 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-02-23 17:27:16 -0700
commite8e9ee18f29b2557fdc514c4322f5446484c4d58 (patch)
tree1d44fde6ca06f4c377d5cbf3d5ec9b31746ef012 /test/programs/index.ts
parentd0d6aae1e56428f597f69f5c9cfb261afe671f5d (diff)
downloadcps-interpreter-e8e9ee18f29b2557fdc514c4322f5446484c4d58.tar.gz
cps-interpreter-e8e9ee18f29b2557fdc514c4322f5446484c4d58.zip
simple parser
Diffstat (limited to 'test/programs/index.ts')
-rw-r--r--test/programs/index.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/programs/index.ts b/test/programs/index.ts
new file mode 100644
index 0000000..e0403fd
--- /dev/null
+++ b/test/programs/index.ts
@@ -0,0 +1,7 @@
+import { join } from 'path';
+
+export namespace TestPrograms {
+ export const AddOneThree = Bun.file(
+ join(import.meta.dir + '/add-1-3.cps'),
+ ).text();
+}