summaryrefslogtreecommitdiff
path: root/comp/lucas-standen-NEA/code/zpy/zpy.c
diff options
context:
space:
mode:
authorthing1 <thing1@seacrossedlovers.xyz>2024-07-11 13:33:42 +0100
committerthing1 <thing1@seacrossedlovers.xyz>2024-07-11 13:33:42 +0100
commitfec2f4d9d1989feb0290dfcff416385ec4b97586 (patch)
tree6098d2f8c80cabe776ca0a8c6f24233906573844 /comp/lucas-standen-NEA/code/zpy/zpy.c
parent3d0db47fa403229bced868f0b59e024b95cd19b6 (diff)
finished vars, started work on the final zpy executable, still need to fix the parser though
Diffstat (limited to 'comp/lucas-standen-NEA/code/zpy/zpy.c')
-rw-r--r--comp/lucas-standen-NEA/code/zpy/zpy.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/comp/lucas-standen-NEA/code/zpy/zpy.c b/comp/lucas-standen-NEA/code/zpy/zpy.c
index e69de29..70d2757 100644
--- a/comp/lucas-standen-NEA/code/zpy/zpy.c
+++ b/comp/lucas-standen-NEA/code/zpy/zpy.c
@@ -0,0 +1,14 @@
+#include <stdio.h>
+
+#include "../tokenizer/parser.h"
+#include "../global/types.h"
+#include "../global/util.h"
+
+int main(int argc, char **argv){
+ if (argc < 2) {
+ printf("repl not yet implemented\n");
+ Die();
+ }
+ parser(argv[1]);
+ return 0;
+}