Typos fixed, and reformulated a bit (#31)

This commit is contained in:
Silicon27 2025-01-20 19:32:49 +01:00 committed by GitHub
parent 43c188951c
commit 8e8c700b48
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,14 +4,14 @@ It is possible to call your assembly language code from Python. In fact,
it can be insanely easy. It can also be difficult. What differentiates it can be insanely easy. It can also be difficult. What differentiates
the two are the arguments you need to pass. the two are the arguments you need to pass.
Python stores data in a very different way than C and therefore assembly Python stores data very differently than C and therefore assembly
language. All Python data types are objects, which for sets and dicts language. All Python data types are objects, which for sets and dicts
can make things difficult and outside the scope of this book. can make things difficult and outside the scope of this book.
If you want to explore the subject deeply, we suggest If you want to explore the subject deeply, we suggest
[this link](https://realpython.com/python-bindings-overview) [this link](https://realpython.com/python-bindings-overview)
## Simple EXample ## Simple Example
Take this trivial C function: Take this trivial C function: