Hacker News new | ask | show | jobs
by nemetroid 1887 days ago
I've never seen C++ that isn't cautious about copying as little as possible.
1 comments

A big difference is that C++ copies implicitly. Rust has the opposite default, it will never clone implicitly.