mylib.cpp 62 B

123456
  1. #include "mylib.hpp"
  2. int doubler(int x) {
  3. return 2*x;
  4. }