2026-03-25 07:43:00 -06:00
|
|
|
#include "lexer.h"
|
|
|
|
|
#include "parser.h"
|
2026-02-28 13:59:02 -06:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
2026-03-25 07:43:00 -06:00
|
|
|
int main(void) {
|
|
|
|
|
ASTNodeArray context;
|
|
|
|
|
|
|
|
|
|
tokenize("3 + 4 * 5", &context);
|
|
|
|
|
|
|
|
|
|
AST tree = parse(&context);
|
|
|
|
|
|
|
|
|
|
printf("Hola\n");
|
|
|
|
|
|
2026-02-28 13:59:02 -06:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|
}
|