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/parser.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'uscript/parser.c') diff --git a/uscript/parser.c b/uscript/parser.c index 89a8883..043249e 100644 --- a/uscript/parser.c +++ b/uscript/parser.c @@ -886,13 +886,6 @@ void stat(struct parser *p) } else if (consume(p, TOKEN_RET)) { ret_stat(p); consume(p, ';'); - } else if (consume(p, TOKEN_PRINT)) { - // temp. only til functions get functioning - expect(p, '(', "expected '('"); - expr(p); - expect(p, ')', "expected ')'"); - parser_add_byte(p, BC_PRINT); - consume(p, ';'); } else { expr_stat(p); } -- cgit v1.3-2-g0d8e