From bcd6021b752ca4edff05448e7991c5f2eb9c0c55 Mon Sep 17 00:00:00 2001 From: iamcheeseman Date: Tue, 14 Apr 2026 17:09:40 -0400 Subject: microscript: remove mod keyword --- uscript/lex.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'uscript/lex.c') diff --git a/uscript/lex.c b/uscript/lex.c index b89537d..a25bb86 100644 --- a/uscript/lex.c +++ b/uscript/lex.c @@ -173,8 +173,6 @@ struct token ident_token(struct lexer *lex) kind = TOKEN_ELSE; else if (match_kw(lex, "loop")) kind = TOKEN_LOOP; - else if (match_kw(lex, "mod")) - kind = TOKEN_MOD; else if (match_kw(lex, "true")) kind = TOKEN_TRUE; else if (match_kw(lex, "false")) -- cgit v1.3-2-g0d8e