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