PixelWars/teams/hello.cpp
2016-05-16 00:34:44 +02:00

10 lines
154 B
C++

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