summaryrefslogtreecommitdiff
path: root/tests/projects/pascal/console_with_c/src/foo.c
blob: 0d56f5f0996fc9585165d49e604ccd579dc7bf83 (plain)
1
2
3
4
5
#include <stdint.h>

extern int64_t fib(int64_t n) {
    return n > 1 ? fib(n - 1) + fib(n - 2) : 1;
}