Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror

Comment BTW Rust does not prevent memory leaks (Score 1) 160

As explained in The Rust Programming Language book, Rust doesn't indeed prevent memory leaks (although it makes them difficult to achieve). What the language prevents (unless you use unsafe code) are memory errors like accessing dangling pointers, double free, etc. It also prevents data races, but not memory leaks.

Slashdot Top Deals

You can now buy more gates with less specifications than at any other time in history. -- Kenneth Parker

Working...