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