wok annotate rust/description.txt @ rev 25315

updated soprano and soprano-dev (2.8.0 -> 2.9.4)
author Hans-G?nter Theisgen
date Thu Jul 21 06:45:43 2022 +0100 (23 months 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.