aboutsummaryrefslogtreecommitdiff
path: root/stage1/main.cpp
blob: 6f2cd57fae8359d90a9f8592d8ad6b8554dc81ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
}