commit 82adc3c423f00545b845f7dec17861c450dfd7e2 parent 0fe78eb9ecf420bc052853455a74458bc4880403 Author: citbl <citbl@citbl.org> Date: Sun, 10 May 2026 19:00:28 +1000 minor Diffstat:
| M | src/lexer.c | | | 1 | - |
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/src/lexer.c b/src/lexer.c @@ -60,7 +60,6 @@ static char peek(Lexer *l) static void run_until_char(Lexer *l, char c) { do { - // printf("%zu", l->state.pos); l->state.pos++; } while (peek(l) != c); l->state.pos++;