1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-02 22:02:39 +02:00

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 cf2f1ad531
commit 2b1256212d

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>