Rust
Rust is a multi-paradigm, high-level, general-purpose programming language that emphasizes performance, type safety, and concurrency. It enforces memory safety—ensuring that all references point to valid memory—without requiring the use of a garbage collector or reference counting present in other memory-safe languages. To simultaneously enforce memory safety and prevent concurrent data races, its 'borrow checker' tracks the object lifetime of all references in a program during compilation. Rust is popular for systems programming but also has high-level features including some functional programming constructs.[1]
- Project Homepage [EN]
Documentation
Books
Further Information
- Rust Basics Series [EN] @ It's FOSS
- #1: Create and Run Your First Rust Program (28.03.2023)
- #2: Using Variables and Constants in Rust Programs (03.04.2023)
- #3: Data Types in Rust (10.04.2023)
- #4: Arrays and Tuples in Rust (17.04.2023)
- #5: Functions in the Rust Programming Language (24.04.2023)
- #6: Conditional Statements (01.05.2023)
- #7: Using Loops in Rust (07.05.2023)
- #8: Write the Milestone Rust Program (15.05.2023)
References
- ↑ Wikipedia contributors. "Rust (programming language)." Wikipedia. https://en.wikipedia.org/wiki/Rust_(programming_language) (accessed 06.05.2023)