added 'ret' and implemented a proper 'strcmp'

This commit is contained in:
IgorCielniak
2026-03-19 13:29:49 +01:00
parent cda34e61bd
commit 4508433206
6 changed files with 64 additions and 9 deletions

11
tests/ret_test.sl Normal file
View File

@@ -0,0 +1,11 @@
import stdlib.sl
word g
"g" puts
ret
"g" puts
end
word main
g
end