Friday, January 20, 2023

Collection of quotes about Rust

This post is a collection of quotes about Rust (initially released in 2015). There are 3 quotes listed below. License: CC BY-SA 3.0

1. "Rust aims to support concurrent systems programming, which has inspired a feature set with an emphasis on safety, control of memory layout, and concurrency." (Wikipedia: Rust (programming language), 1.20.23 UTC 14:40)

2. "Rust enforces memory safety - that is, that all references point to valid memory - without requiring the use of a garbage collector or reference counting present in other memory-safe languages." (Wikipedia: Rust (programming language), 1.20.23 UTC 14:40)

3. "Rust provides two 'modes': safe and unsafe. The safe mode is the 'normal' one, in which most Rust is written. In unsafe mode, the developer is responsible for the correctness of the code, making it possible to create applications which require low-level features." (Wikipedia: Rust (programming language), 1.20.23 UTC 14:40)