And on that kind of highly plausible, arguably inevitable bad day, you are going to have to say something like "yeah, I'm a Pythonista, but I'm going to have to read a bunch of C code today" and grow as a person while under time pressure. I have had to do this... quite a few times in my career. You do this stuff long enough, it's not an anomaly, it's a rite of passage. Like bad days more generally, you have to assume this is coming.
So, this is something I took for granted with Prone. It is assumed that 90% of the time you don't need to look at the generated C code, but in the remaining 10%, it should be readable, and possible to cross-reference with the Prone source code that was transformed. No minified webpack soup. I have less control over how easy it is to follow the white rabbit one layer lower into assembly, but that's thankfully documented by other people and a transferable skill. Prone also has great FFI because it's transpiled, so if you need more control, you can write specific parts in C.
5/n
