SquareRoot.cxx 120 B

12345678910
  1. #include "SquareRoot.h"
  2. #include <cmath>
  3. namespace MathFunctions {
  4. double sqrt(double x)
  5. {
  6. return std::sqrt(x);
  7. }
  8. }