shared_lib.cpp 135 B

12345678910
  1. #include <iostream>
  2. #include <shared_lib.h>
  3. using namespace std;
  4. void shared_hello()
  5. {
  6. cout << "Hello from shared_lib" << endl;
  7. }