semi-complete semantic

This commit is contained in:
2025-12-02 05:11:27 +09:00
parent f4501529df
commit f1fd203233
9 changed files with 567 additions and 213 deletions

13
src/test.cm Normal file
View File

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