Implemented liveness analysis
All checks were successful
/ test (push) Successful in 15s

This commit is contained in:
Eduard Urbach 2025-07-04 19:06:47 +02:00
parent f357285045
commit 0ece1b092e
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
23 changed files with 274 additions and 113 deletions

View file

@ -1,8 +1,10 @@
import os
main() {
t1 := sum(1, 2)
t2 := sum(3, 4)
t3 := sum(t1, t2)
syscall(60, t3)
os.exit(t3)
}
sum(a int, b int) -> int {