summaryrefslogtreecommitdiff
path: root/src/compiler/lexer.c
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-23 22:09:19 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-23 22:09:19 +0330
commitaf6a58bfad54dc9d3cb49d1efa1c90a5d094bcb1 (patch)
tree73d775c037d680446181a48ac4d17025c0974603 /src/compiler/lexer.c
parent4a39184dfcf0af72e2a28ffed2e3b342202fcba1 (diff)
fix bugs in float types
Diffstat (limited to 'src/compiler/lexer.c')
-rw-r--r--src/compiler/lexer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/lexer.c b/src/compiler/lexer.c
index 1c8ae5d..2b7a789 100644
--- a/src/compiler/lexer.c
+++ b/src/compiler/lexer.c
@@ -180,6 +180,7 @@ LexerNodeArray lexer(char *str) {
goto RETURN_ERROR;
}
}
+ continue;
} else {
--iter;
c = *iter;