diff options
| author | Carson Fleming <cflems@cflems.net> | 2026-07-21 14:36:02 -0700 |
|---|---|---|
| committer | Carson Fleming <cflems@cflems.net> | 2026-07-21 14:36:02 -0700 |
| commit | 0cabbd2a0853c332c82af621b8716643741d758a (patch) | |
| tree | 4d1772e07ff1b81e00b563f877c6f1ead3305a8d /test/fibonacci.c | |
| parent | f87e953223b7d498fc5401247952c08ab1e08f93 (diff) | |
| download | ccc-0cabbd2a0853c332c82af621b8716643741d758a.tar.gz | |
more faithful grammar
Diffstat (limited to 'test/fibonacci.c')
| -rw-r--r-- | test/fibonacci.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/fibonacci.c b/test/fibonacci.c deleted file mode 100644 index a07c111..0000000 --- a/test/fibonacci.c +++ /dev/null @@ -1,8 +0,0 @@ -int fib (int n) { - if (n) return n * fib(n-1); - else return 1; -} - -int main (int argc, char** argv) { - return fib(argc); -} |
