wok-6.x annotate rust/description.txt @ rev 25301
updated sg3_utils, sg3_utils-dev and libsgutils2 (1.45 -> 1.47)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Jul 20 08:07:57 2022 +0100 (2022-07-20) |
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. |