Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 798 Bytes

README.md

File metadata and controls

12 lines (7 loc) · 798 Bytes

Fearless Concurrency

Rust's ownership rules and strong type system help Rust managing memory safety and concurrency problems. So by leveraging this Rust is able to catch lots of concurrency problems at compile time. This is nicknamed in Rust as Fearless Concurrency.

What is covered