TreeLang/compiler.cpp

13 lines
237 B
C++
Raw Normal View History

2022-10-19 02:21:42 +00:00
#include "global.h"
#include <string>
// derived from https://llvm.org/docs/tutorial/MyFirstLanguageFrontend/LangImpl01.html
2022-10-22 05:58:36 +00:00
#include "lexer.cpp"
#include "parser.cpp"
2022-10-19 02:21:42 +00:00
void compiler( char filename[] ) {
2022-10-22 05:58:36 +00:00
while(true) LOG(getTok())
}