2019-05-14 12:00:45 -07:00
|
|
|
#include <iostream>
|
|
|
|
#include <set>
|
2019-05-20 11:12:53 -07:00
|
|
|
#include "tree.hpp"
|
2019-05-14 12:00:45 -07:00
|
|
|
#include "parser.hpp"
|
|
|
|
|
|
|
|
extern int yylex();
|
|
|
|
|
2019-05-20 11:12:53 -07:00
|
|
|
extern stmt_ptr target_program;
|
2019-05-14 12:00:45 -07:00
|
|
|
|
|
|
|
int main() {
|
|
|
|
if (!yylex()) {
|
|
|
|
delete target_program;
|
|
|
|
}
|
|
|
|
}
|