Update 101-rust.md (#1043)

Added content for the Rust programming language.
Contents: link to the official online book and the rust by example official web page.
This commit is contained in:
Anaxímeno Brito
2022-01-28 20:28:02 -01:00
committed by GitHub
parent d55b6927b8
commit 7cb36ca7ff

View File

@ -1 +1,7 @@
# Rust
# Rust
Rust is a modern systems programming language focusing on safety, speed, and concurrency. It accomplishes these goals by being memory safe without using garbage collection.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink badgeText='Read' colorScheme="yellow" href='https://doc.rust-lang.org/book/'>The Rust Programming Language - online book</BadgeLink>
<BadgeLink badgeText='Read' colorScheme="yellow" href='https://doc.rust-lang.org/stable/rust-by-example/index.html'>Rust by Example - collection of runnable examples</BadgeLink>