Update README, new tests

This commit is contained in:
2025-12-11 14:24:11 +11:00
parent 4c6aa97fd5
commit 633e438712
4 changed files with 47 additions and 6 deletions

View File

@@ -2,5 +2,18 @@ fun !dingus -string
return "dingle"
endfun
fun !jumpy
set &x 0
@loop
equal $x 10 &cond
if $cond %endloop
add 1 $x &x
println $x
jump %loop
@endloop
endfun
call !dingus &e
println $e
call !jumpy &x