mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-15 23:18:48 +00:00
Reorganize tests
This commit is contained in:
11
examples/c/simple_if.c
Normal file
11
examples/c/simple_if.c
Normal file
@@ -0,0 +1,11 @@
|
||||
int (fibonacci)(int n) {
|
||||
if (n < 2) {
|
||||
n += 2;
|
||||
}
|
||||
|
||||
return fibonacci(n - 2) + fibonacci(n - 1);
|
||||
}
|
||||
|
||||
int main() {
|
||||
return 1;
|
||||
}
|
||||
Reference in New Issue
Block a user