// Hello World Example from the tutorial // [Joel de Guzman 10/9/2002] char const* greet() { return "hello, world"; } #include #include using namespace boost::python; BOOST_PYTHON_MODULE(hello) { def("greet", greet); }