hoshi-lang dev
Yet another programming language
Loading...
Searching...
No Matches
fib.cpp
Go to the documentation of this file.
1#include <iostream>
2
3int fib(int n) {
4 if (n <= 1) {
5 return n;
6 }
7 return fib(n-1) + fib(n-2);
8}
9
10int main() {
11 fib(40);
12 return 0;
13}
int fib(int n)
Definition fib.cpp:3
int main()
Definition fib.cpp:10