Compare commits

..

No commits in common. "4e3e33469962d5a49c78a3fb75d6aad46ac9442098fc5d0a61f9c3d25b198203" and "07a88eacaac760f6885cb3657345d729979a6d86647d9960d1d482a044fdd102" have entirely different histories.

View file

@ -1,11 +1,6 @@
#include <iostream>
auto get_fib_of(int n) -> int {
return n < 2 ? 1 : get_fib_of(n - 1) + get_fib_of(n - 2);
}
auto main() -> int {
std::cout << "hello, world" << std::endl;
std::cout << "10th fib is: " << get_fib_of(10) << std::endl;
return 0;
}