c-like language with:
- built-in function printf
- implicit returns
clang++ -g compiler.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core orcjit native` -o compiler
- cant print multiple times, due to redeclaration of print ptr
- existing linker is hacky and within the compiler
./compiler ./example.c &> temp.ll && lli temp.ll