add calculation to test

This commit is contained in:
William Bell
2025-08-16 05:40:29 +01:00
parent b905026010
commit 78a1edd572

View File

@@ -8,3 +8,8 @@ let say_hi(name) = do
return "hello "+u+", how are you?"
term.log(say_hi("william"))
let a = 9
let b = 10
term.log(string(a)+'+'+string(b)+'='+string(a+b))