Simplified compilation of function calls

This commit is contained in:
Eduard Urbach 2025-03-02 21:36:23 +01:00
parent c777d73bbb
commit 225d78e2d8
Signed by: eduard
GPG key ID: 49226B848C78F6C8
14 changed files with 114 additions and 97 deletions

View file

@ -0,0 +1,3 @@
main() {
loop
}

View file

@ -1,3 +0,0 @@
main() {
x := 1 + f(x)
}

View file

@ -0,0 +1,3 @@
main() {
x := 1 + unknown(x)
}