Hacker News new | ask | show | jobs
by mungaihaha 23 days ago
Almost like how RAII in C++ does it?
1 comments

RAII in C++ is optional and not enforced everywhere. It certainly helps if you use it. In Rust you can't turn it off.
unsafe?