diff options
| author | Ákos Kőrösi <korakos99@gmail.com> | 2026-05-12 11:26:37 +0200 |
|---|---|---|
| committer | Ákos Kőrösi <korakos99@gmail.com> | 2026-05-12 11:26:37 +0200 |
| commit | 9f0ac1740baac8f3a74ebacf5c62ecea700846d9 (patch) | |
| tree | e7a747a8e64de90f3c6eb875397116955f5e424f /main.c | |
| parent | 52f705e81ce2d7a42c6c14fca92c5e2a4326c988 (diff) | |
omitted push-on-space logic added
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ int main() { char* line; while (1) { - line = readline("$"); + line = readline("$ "); if (line[0] == '\0') continue; if (strcmp(line, "exit") == 0) exit(0); LexResult res = lex(line); |
