My space for the Rust language

May 22, 2025

First Entry

The main feature of Rust seems to be the concept of ownership. While other languages either have garbage collection which takes care of unused memory and languages in which the user has to take care over allocating and freeing memory from time to time, Rust takes what I so far consider a mixed approach. Involving scope and the differentiation between mutable and immutable variables and references.