12 lines
151 B
C++
12 lines
151 B
C++
#include <iostream>
|
|
#include "../test-libshared/library.h"
|
|
|
|
int main()
|
|
{
|
|
std::cout << "Hello, World!" << std::endl;
|
|
|
|
hello();
|
|
|
|
return 0;
|
|
}
|