Added nested calls test

This commit is contained in:
Eduard Urbach 2024-07-05 11:56:57 +02:00
parent c13a70c958
commit 099ee729d4
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
4 changed files with 13 additions and 9 deletions

View file

@ -0,0 +1,11 @@
main() {
exit(f(f(f(1))))
}
exit(code) {
syscall(60, code)
}
f(x) {
return x + 1
}