Invoke add_two from the extension and print the result.
()
| 22 | |
| 23 | |
| 24 | def run_add_two() -> None: |
| 25 | """Invoke add_two from the extension and print the result.""" |
| 26 | print("=========== Example 1: add_two ===========") |
| 27 | print(my_ffi_extension.LIB.add_two(1)) |
| 28 | |
| 29 | |
| 30 | def run_add_one() -> None: |