mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-17 07:11:52 +08:00
9 lines
102 B
C++
9 lines
102 B
C++
#include "Addition.h"
|
|
|
|
namespace MathFunctions {
|
|
double add(double x, double y)
|
|
{
|
|
return x + y;
|
|
}
|
|
}
|