OpAdd.cxx 81 B

123456
  1. namespace mathfunctions {
  2. double OpAdd(double a, double b)
  3. {
  4. return a + b;
  5. }
  6. }