summaryrefslogtreecommitdiff
path: root/uscript/parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'uscript/parser.c')
-rw-r--r--uscript/parser.c7
1 files changed, 0 insertions, 7 deletions
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);
}