9 lines
189 B
C++
9 lines
189 B
C++
#include <iostream>
|
|
#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
|