1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-17 07:11:52 +08:00
Files
CMake/Help/guide/importing-exporting/MathFunctionsComponents/Addition/Addition.cxx
2020-09-11 08:50:52 -04:00

9 lines
102 B
C++

#include "Addition.h"
namespace MathFunctions {
double add(double x, double y)
{
return x + y;
}
}