Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:17:51

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 }