8 lines
124 B
C++
8 lines
124 B
C++
|
#include "library.h"
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
void hello() {
|
||
|
std::cout << "Hello, World BUT from library!" << std::endl;
|
||
|
}
|