Added nested calls test

This commit is contained in:
2024-07-05 11:56:57 +02:00
parent c13a70c958
commit 099ee729d4
4 changed files with 13 additions and 9 deletions

View File

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