aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorc2024-03-04 13:11:29 -0500
committerc2024-03-04 13:11:29 -0500
commit9a7e88e33213135da7c8fa3607ca455d997f4a39 (patch)
treecb0f7af69ff765656378eb69dd4cf63e9f86934f /src/main.c
parent96c63e2fc4d70f20c8e2bac79e3547dfd6a5fcb8 (diff)
One can now load simple variables into memory.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index e7d345d..2a1507e 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,4 +1,5 @@
#include "include/main.h"
+#include "include/doer.h"
/* FIXME: Segfaults ~30% of the time. No idea why. Thx future self <3. */
int main(int argc, char* argv[]) {
@@ -42,6 +43,7 @@ int main(int argc, char* argv[]) {
doer_t* doer = doer_init(parser->tree);
doer_do_block(doer);
+ target_print(doer->targets);
/* Clean up. */
doer_destroy(doer);