Skip to content

Commit 37ee620

Browse files
committed
Update main.cpp
1 parent 1797665 commit 37ee620

File tree

1 file changed

+4
-0
lines changed
  • examples/conan_cmake/library_consumer

1 file changed

+4
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
#include <mathutils/mathutils.h>
2+
#include <iostream>
23

34
int main()
45
{
56
// Test the mathutils library
7+
std::cout << "Testing MathUtils library..." << std::endl;
8+
69
double result1 = mathutils::add(5.0, 3.0);
710
double result2 = mathutils::multiply(4.0, 2.5);
811

12+
std::cout << "MathUtils tests completed successfully!" << std::endl;
913
return 0;
1014
}

0 commit comments

Comments
 (0)