mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-23 13:00:17 +00:00
commit
475be8ce80
34
README.md
34
README.md
@ -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;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user