aboutsummaryrefslogtreecommitdiff
path: root/stage1/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'stage1/main.cpp')
-rw-r--r--stage1/main.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/stage1/main.cpp b/stage1/main.cpp
new file mode 100644
index 00000000000..6f2cd57fae8
--- /dev/null
+++ b/stage1/main.cpp
@@ -0,0 +1,13 @@
+#include <iostream>
+#include "root.h"
+
+int main(int argn, char **argv)
+{
+ std::cout << "I am a builder!" << std::endl;
+
+ get_root("/Users/spacekookie/Projects/code/libkookie/roots");
+
+ std::cout << "uwu!" << std::endl;
+ return 0;
+}
+