Added more tests

This commit is contained in:
Eduard Urbach 2024-07-06 17:01:52 +02:00
parent a9f305dec2
commit 230bb36709
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
3 changed files with 12 additions and 0 deletions

View file

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

View file

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