diff options
| author | Ákos Kőrösi <korakos99@gmail.com> | 2026-05-12 10:23:03 +0200 |
|---|---|---|
| committer | Ákos Kőrösi <korakos99@gmail.com> | 2026-05-12 10:23:03 +0200 |
| commit | 52f705e81ce2d7a42c6c14fca92c5e2a4326c988 (patch) | |
| tree | 90c7ba2324f4d2e531a45cdefd827ab1177803ba /main.c | |
| parent | f0016d8946958d029706b39ecd233044d3cf93f5 (diff) | |
wire up a basic test main with the lexing
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -12,6 +12,7 @@ int main() { line = readline("$"); if (line[0] == '\0') continue; if (strcmp(line, "exit") == 0) exit(0); + LexResult res = lex(line); printf("%s \n", line); } |
