blob: 6053f30c8163883a26c97d1b6d8b4a99ab4dae49 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include <boost/python.hpp>
using namespace boost::python;
static const char* hello() {
return "hello world!";
}
BOOST_PYTHON_MODULE(arcadia_boost_python_test) {
def("hello", &hello);
}
|