summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-09-29 14:07:04 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2019-09-29 14:07:04 -0400
commitcfc66b3b567538b76c6170e3a86f0cabdd867b91 (patch)
tree36c359e218da15912399bba6e06dcff8583d4e59 /main.c
parent1318715bdf9a7c7da86913094d9ad7ad52779333 (diff)
made allocator; will switch to it soon
Diffstat (limited to 'main.c')
-rw-r--r--main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/main.c b/main.c
index 596f3de..5c2f1f1 100644
--- a/main.c
+++ b/main.c
@@ -1,5 +1,8 @@
/*
TODO:
+allocator
+casting errors
+call fns at compile time
finish evaluator
fix void fn type
re-do cgen
@@ -8,6 +11,8 @@ any odd number of "s for a string
#include "toc.c"
int main(int argc, char **argv) {
+ allocr_test();
+ return 0;
if (argc < 2) {
fprintf(stderr, "Please specify an input file.\n");
return EXIT_FAILURE;