Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /jana2/src/python/externals/pybind11-2.10.3/tests/test_cmake_build/main.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 #include <pybind11/pybind11.h>
0002 namespace py = pybind11;
0003 
0004 PYBIND11_MODULE(test_cmake_build, m) {
0005     m.def("add", [](int i, int j) { return i + j; });
0006 }