From 348009ba1f724c163a9ea3360fc88bdf24f22d8b Mon Sep 17 00:00:00 2001 From: iamcheeseman Date: Tue, 14 Apr 2026 12:49:34 -0400 Subject: microscript: remove print statement --- 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 cc41b2a..b89537d 100644 --- a/uscript/lex.c +++ b/uscript/lex.c @@ -201,8 +201,6 @@ struct token ident_token(struct lexer *lex) kind = TOKEN_END; else if (match_kw(lex, "global")) kind = TOKEN_GLOBAL; - else if (match_kw(lex, "print")) - kind = TOKEN_PRINT; return create_token(lex, kind); } -- cgit v1.3-2-g0d8e