mirror of
https://github.com/cpm-cmake/CPM.cmake.git
synced 2025-11-17 14:47:30 -05:00
9 lines
143 B
C++
9 lines
143 B
C++
|
|
#include <cstdio>
|
||
|
|
#include <fibadder/fibadder.hpp>
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
int sum = fibadder::fibadd(6, 7);
|
||
|
|
std::printf("%d\n", sum);
|
||
|
|
return 0;
|
||
|
|
}
|