Implemented register calls

This commit is contained in:
Eduard Urbach 2025-03-02 17:53:18 +01:00
parent 0483176e56
commit c777d73bbb
Signed by: eduard
GPG key ID: 49226B848C78F6C8
16 changed files with 133 additions and 43 deletions

View file

@ -0,0 +1,5 @@
main() {}
f(x unknown) -> int {
return x
}

View file

@ -0,0 +1,5 @@
main() {}
f(x int) -> unknown {
return x
}

View file

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