bump version and update tests (#131)

This commit is contained in:
Lars Melchior
2020-06-15 10:16:30 +02:00
committed by GitHub
parent 392b2a864b
commit 9ec279c75f
14 changed files with 44 additions and 28 deletions

View File

@@ -0,0 +1,9 @@
#define CATCH_CONFIG_MAIN
#include <fibonacci.h>
#include <iostream>
int main(){
std::cout << "fib(10) = " << fastFibonacci(10) << std::endl;
return 0;
}