From 78a1edd5726f74d794d8bd3891f022491298dde5 Mon Sep 17 00:00:00 2001 From: William Bell <62452284+Ugric@users.noreply.github.com> Date: Sat, 16 Aug 2025 05:40:29 +0100 Subject: [PATCH] add calculation to test --- testing.ar | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/testing.ar b/testing.ar index a1dd833..76d5a44 100644 --- a/testing.ar +++ b/testing.ar @@ -7,4 +7,9 @@ let say_hi(name) = do ) return "hello "+u+", how are you?" -term.log(say_hi("william")) \ No newline at end of file +term.log(say_hi("william")) + +let a = 9 +let b = 10 + +term.log(string(a)+'+'+string(b)+'='+string(a+b)) \ No newline at end of file