wok annotate rust/description.txt @ rev 25858

Update some urls
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 23 14:52:03 2025 +0000 (2 weeks ago)
parents
children
rev   line source
Hans-Günter@25293 1 Rust is a multi-paradigm, general-purpose programming language
Hans-Günter@25293 2 designed for performance and safety, especially safe concurrency.
Hans-Günter@25293 3 Rust is syntactically similar to C++, but can guarantee memory
Hans-Günter@25293 4 safety by using a borrow checker to validate references.
Hans-Günter@25293 5 Rust achieves memory safety without garbage collection, and
Hans-Günter@25293 6 reference counting is optional.
Hans-Günter@25293 7 Rust has been called a systems programming language and in
Hans-Günter@25293 8 addition to high-level features such as functional programming
Hans-Günter@25293 9 it also offers mechanisms for low-level memory management.