9 lines
136 B
C++
9 lines
136 B
C++
#include <iostream>
|
|
|
|
// g++ -shared hello.cpp -o hello.dll
|
|
|
|
extern "C" void think(void)
|
|
{
|
|
std::cout << "Hello World !" << std::endl;
|
|
}
|