summaryrefslogtreecommitdiff
path: root/src/cli/main.c
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2025-04-08 01:07:22 +0000
committerLinnnus <[email protected]>2025-04-08 01:07:34 +0000
commit8dd0c4f27aae02dd60f029db4cf03f9902cba26f (patch)
tree829c4bc0917f6615c55ae61d49932179c038c1e5 /src/cli/main.c
feat: Initial commit
At this point we have some allocation routines but no work on the actual language has been done.
Diffstat (limited to 'src/cli/main.c')
-rw-r--r--src/cli/main.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/cli/main.c b/src/cli/main.c
new file mode 100644
index 0000000..4d96aa2
--- /dev/null
+++ b/src/cli/main.c
@@ -0,0 +1,13 @@
+#include "../core/state.h"
+
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(int argc, char *argv[]) {
+ (void)argc;
+ (void)argv;
+
+ printf("TODO\n");
+
+ return EXIT_SUCCESS;
+}