15 lines
196 B
C++
15 lines
196 B
C++
#include <iostream>
|
|
#include <set>
|
|
#include "tree.hpp"
|
|
#include "parser.hpp"
|
|
|
|
extern int yylex();
|
|
|
|
extern stmt_ptr target_program;
|
|
|
|
int main() {
|
|
if (!yylex()) {
|
|
delete target_program;
|
|
}
|
|
}
|