mirror of
https://github.com/cpm-cmake/CPM.cmake.git
synced 2025-11-19 16:57:56 -05:00
10 lines
137 B
C++
10 lines
137 B
C++
#include <adder/adder.hpp>
|
|
#include <cstdio>
|
|
|
|
int main()
|
|
{
|
|
int sum = adder::add(5, 3);
|
|
std::printf("%d\n", sum);
|
|
return 0;
|
|
}
|