update stuff

This commit is contained in:
2026-02-05 19:14:31 +11:00
parent 4333c42305
commit 755e7f9606
8 changed files with 175 additions and 52 deletions

View File

@@ -1,5 +1,11 @@
#include "lexer/lexer.h"
#include <stdio.h>
int main() {
ResultType(SolsLexer, charptr) lexer = createLexer("puts \"dingus\"");
if (lexer.error) {
printf("Error while creating lexer: %s", lexer.as.error);
}
lex(&lexer.as.success);
return 0;
}