mirror of
https://github.com/cpm-cmake/CPM.cmake.git
synced 2025-11-18 07:07:47 -05:00
10 lines
160 B
C++
10 lines
160 B
C++
#define CATCH_CONFIG_MAIN
|
|
|
|
#include <fibonacci.h>
|
|
#include <iostream>
|
|
|
|
int main(){
|
|
std::cout << "fib(10) = " << fastFibonacci(10) << std::endl;
|
|
return 0;
|
|
}
|