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/vm.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'uscript/vm.c') diff --git a/uscript/vm.c b/uscript/vm.c index c01bb0f..26fccbe 100644 --- a/uscript/vm.c +++ b/uscript/vm.c @@ -382,12 +382,6 @@ void us_exec(struct us_func *func) case BC_LOOP: i -= read_short(func->proto, &i); break; - case BC_PRINT: { - char *str = val_to_str(vm_pop(), NULL); - olog(str); - mem_free(str); - break; - } case BC_CALL: { int argc = read_byte(); struct us_val callee = vm.stacktop[-argc - 1]; -- cgit v1.3-2-g0d8e