From 517e9fe048844533d927c4e3b6d021f82ccea984 Mon Sep 17 00:00:00 2001 From: ubq323 Date: Wed, 26 Jun 2024 14:48:27 +0100 Subject: remove OP_PUTS and OP_PRINT, use say and write functions instead --- tests/vars.bth | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/vars.bth') diff --git a/tests/vars.bth b/tests/vars.bth index 54555ad..423dde6 100644 --- a/tests/vars.bth +++ b/tests/vars.bth @@ -1,8 +1,8 @@ (set a 5) (set b 10) (set thethe 1234) -(puts (+ a b)) -(puts (- thethe a)) -(puts (+ (set a 90) b)) -(puts a) +(say (+ a b)) +(say (- thethe a)) +(say (+ (set a 90) b)) +(say a) nil -- cgit v1.2.3