···11+# Ctypes Hello World
22+33+This is an example of how to make your own Python extensions with C.
44+55+66+To build the package.
77+```shell
88+cd libhello
99+uv run python setup.py build
1010+uv run python setup.py install
1111+```
1212+1313+To run the example code.
1414+1515+```shell
1616+uv run python main.py
1717+```