Hacker News new | ask | show | jobs
by cactusfrog 198 days ago
Could the rust code be transpired to readable C?
1 comments

> readable

No, because some things that are UB in C are not in Rust, and vice versa, so any codegen has to account for that and will result in additional verbosity that you wouldn't see in "native" code.

Thank you for the explanation