Assignment-3/main.cpp

15 lines
196 B
C++
Raw Normal View History

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