top | item 46047231

(no title)

cactusfrog | 3 months ago

Could the rust code be transpired to readable C?

discuss

order

estebank|3 months 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|3 months ago

Thank you for the explanation