7 ms·
Could the rust code be transpired to readable C?
by cactusfrog 10mo ago
Could the rust code be transpired to readable C?
- estebank 10mo ago> 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.
- cactusfrog 10mo agoThank you for the explanation