Merge pull request #283 from 16bit-ykiko/doc

Update README.
This commit is contained in:
BLUELOVETH 2024-06-19 14:24:35 +08:00 committed by GitHub
commit 475be8ce80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -91,39 +91,33 @@ python scripts/run_tests.py
### Example ### Example
```cpp ```cpp
#include "pocketpy.h" #include <pybind11/pybind11.h>
using namespace pkpy; namespace py = pybind11;
int main(){ int main() {
// Create a virtual machine // Start the interpreter
VM* vm = new VM(); py::scoped_interpreter guard{};
// Hello world! // Hello world!
vm->exec("print('Hello world!')"); py::exec("print('Hello world!')");
// Create a list // Create a list
vm->exec("a = [1, 2, 3]"); py::exec("a = [1, 2, 3]");
// Eval the sum of the list // Eval the sum of the list
PyVar result = vm->eval("sum(a)"); auto result = py::eval("sum(a)");
std::cout << "Sum of the list: "<< py_cast<int>(vm, result) << std::endl; // 6 std::cout << "Sum of the list: " << result.cast<int>() << std::endl; // 6
// Bindings // Bindings
vm->bind(vm->_main, "add(a: int, b: int)", auto m = py::module_::__main__();
[](VM* vm, ArgsView args){ m.def("add", [](int a, int b) {
int a = py_cast<int>(vm, args[0]); return a + b;
int b = py_cast<int>(vm, args[1]); });
return py_var(vm, a + b);
});
// Call the function // Call the function
PyVar f_add = vm->_main->attr("add"); std::cout << "Sum of 2 variables: " << m.attr("add")(1, 2).cast<int>() << std::endl; // 10
result = vm->call(f_add, py_var(vm, 3), py_var(vm, 7));
std::cout << "Sum of 2 variables: "<< py_cast<int>(vm, result) << std::endl; // 10
// Dispose the virtual machine
delete vm;
return 0; return 0;
} }
``` ```