#include "scirpt/lexer.h" #include "scirpt/token.h" #include #include #include int main(void) { printf("hello world\n"); const char* text = "123 if +"; ScirptLexer* lexer = scirpt_lexer_new(text, strlen(text)); while (true) { ScirptToken token = scirpt_lexer_next(lexer); if (token.type == ScirptTokenTypeEof) break; printf("%d\n", token.type); } }