semi-complete semantic v2

This commit is contained in:
2025-12-03 04:58:41 +09:00
parent 90b7d8fcbe
commit 2b6193a2c7
11 changed files with 360 additions and 419 deletions

View File

@@ -1,13 +1,16 @@
int fib(int n) {
if (n <= 0) {
return 1;
} else {
return fib(n * fib(n - 1));
}
int main(void)
{
x(1, 2);
}
/*
int main(void) {
int x;
x = fib(input());
if (x) {
int x;
x = 3;
} else {
int y;
y = 0;
x = 5;
}
output(x);
}
}*/