#include #include "hello_world.h" void hello() { std::cout << "Hello World" << std::endl; } // g++ -c hello_world.cpp -o hello_world.o // ar rcs hello_world.a hello_world.o