barskern

rust

Rust's awesome memory managment

11 minute read Published: 2018-03-13

Rust has a lot of cool features. It is a systems programming language that aims to be a safe, fast and simple. One of the core characteristics is that it can guarante memory and thread safety, without needing a garbage collector. The way it achieves this is through a feature that separates Rust from all other programming languages; ownership.