summaryrefslogtreecommitdiff
path: root/uscript/lex.c
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-04-14 12:49:34 -0400
committeriamcheeseman <[email protected]>2026-04-14 12:49:34 -0400
commit348009ba1f724c163a9ea3360fc88bdf24f22d8b (patch)
tree4102935b735978ac531ec987cf6c9c996025ab36 /uscript/lex.c
parentcfa04f1cd06a7024aca7dba96f930ba130b0f9b4 (diff)
microscript: remove print statement
Diffstat (limited to 'uscript/lex.c')
-rw-r--r--uscript/lex.c2
1 files changed, 0 insertions, 2 deletions
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);
}