From 7cb36ca7ff504df0e7d4f623c928d76adb0f9a50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anax=C3=ADmeno=20Brito?= Date: Fri, 28 Jan 2022 20:28:02 -0100 Subject: [PATCH] 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. --- .../101-backend/content/103-learn-a-language/101-rust.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/101-backend/content/103-learn-a-language/101-rust.md b/content/roadmaps/101-backend/content/103-learn-a-language/101-rust.md index 8fc1f9db2..7a5822c98 100644 --- a/content/roadmaps/101-backend/content/103-learn-a-language/101-rust.md +++ b/content/roadmaps/101-backend/content/103-learn-a-language/101-rust.md @@ -1 +1,7 @@ -# Rust \ No newline at end of file +# 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. + +Free Content +The Rust Programming Language - online book +Rust by Example - collection of runnable examples