Update main.c
This commit is contained in:
parent
6668af7529
commit
2f62eebf94
|
@ -9,6 +9,10 @@ CompilerState state;
|
||||||
|
|
||||||
// Punto de entrada principal del compilador.
|
// Punto de entrada principal del compilador.
|
||||||
const int main(const int argumentCount, const char ** arguments) {
|
const int main(const int argumentCount, const char ** arguments) {
|
||||||
|
|
||||||
|
#ifdef YYDEBUG
|
||||||
|
yydebug = 1;
|
||||||
|
#endif
|
||||||
// Inicializar estado de la aplicación.
|
// Inicializar estado de la aplicación.
|
||||||
state.result = 0;
|
state.result = 0;
|
||||||
state.succeed = false;
|
state.succeed = false;
|
||||||
|
|
Loading…
Reference in New Issue