Implemented dependency tracking

This commit is contained in:
Eduard Urbach 2025-03-03 12:14:53 +01:00
parent acfa6de1d4
commit b095a95021
Signed by: eduard
GPG key ID: 49226B848C78F6C8
12 changed files with 75 additions and 69 deletions

View file

@ -1,6 +1,13 @@
import core
import sys
main() {
func := f
func()
sys.exit(1)
}
f() {
exit := core.exit
exit()
}