We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8ede46 commit 4bd6724Copy full SHA for 4bd6724
examples/lexer.c
@@ -39,7 +39,7 @@ void lex(void* input_void) {
39
} break;
40
41
// Operators
42
- case '+': case '-': {
+ case '*': case '+': case '-': {
43
token_kind = TK_OP;
44
token_value.tk_op = *input;
45
0 commit comments