Y
Hacker News
new
|
ask
|
show
|
jobs
by
dnautics
42 days ago
rust does not promise leak safety.
1 comments
josephg
41 days ago
True. But rust does make it a lot harder to leak memory by accident. Rust variables are automatically freed when they go out of scope. Ownership semantics mean the compiler knows when to free almost everything.
link
ethin
41 days ago
> But rust does make it a lot harder to leak memory by accident. Rust variables are automatically freed when they go out of scope.
RAII has entered the chat.
link