blob: 4f4b09eb158854f8769c3364b53cdba98d9e5c22 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <pybind11/pybind11.h>
int mul(int i, int j) {
return i * j;
}
PYBIND11_MODULE(example, m) {
m.doc() = "vcpkg pybind11 test";
m.def("mul", &mul, "Multiplies two numbers");
}
|