
#include <iostream>

void print_hello_world() { std::cout << "Hello World" << std::endl; }

BOOST_PYTHON_MODULE(TestBoostPython)
{
    using namespace boost::python;
    def('print_hello_world', print_hello_world, "doc");
}
