We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1797665 commit 37ee620Copy full SHA for 37ee620
examples/conan_cmake/library_consumer/main.cpp
@@ -1,10 +1,14 @@
1
#include <mathutils/mathutils.h>
2
+#include <iostream>
3
4
int main()
5
{
6
// Test the mathutils library
7
+ std::cout << "Testing MathUtils library..." << std::endl;
8
+
9
double result1 = mathutils::add(5.0, 3.0);
10
double result2 = mathutils::multiply(4.0, 2.5);
11
12
+ std::cout << "MathUtils tests completed successfully!" << std::endl;
13
return 0;
14
}
0 commit comments