aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..431d8a5
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,11 @@
+#include <stdio.h>
+#include <parse.h>
+#include <term.h>
+
+int main(void)
+{
+ struct term *term = parse("([[((0 1) [(1 0)])]] [0])");
+ print_term(term);
+ free_term(term);
+ return 0;
+}