1 2 3 4 5 6 7 8 9
#include <iostream> #include "mul.h" int main(int argc, char** argv) { int s = mul(3, 4); std::cout << "hello world! " << s << std::endl; return 0; }