Difference between revisions of "Rust"
From Tmplab
(→Ressources pédagogiques) |
(→Ressources pédagogiques) |
||
(4 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
== Ressources pédagogiques == | == Ressources pédagogiques == | ||
+ | |||
+ | [https://en.wikipedia.org/wiki/Rust_(programming_language) The Wikipedia quick introduction to Rust] | ||
=== Rust Book === | === Rust Book === | ||
− | * [ | + | The Rust book is the official training support for Rust |
− | * [ | + | |
+ | * [https://doc.rust-lang.org/stable/book/ Rust Book EN Version] | ||
+ | * [https://jimskapt.github.io/rust-book-fr/ Rust Book FR Version] | ||
=== Rustlings === | === Rustlings === | ||
Line 14: | Line 18: | ||
[https://awesome-rust.com A list of everything rust: pedagogic resources, libraries, and more] | [https://awesome-rust.com A list of everything rust: pedagogic resources, libraries, and more] | ||
+ | |||
+ | === Exercises === | ||
+ | https://exercism.org/tracks/rust/exercises/ | ||
== Install Rust == | == Install Rust == | ||
− | + | === System package install === | |
Debian, Ubuntu, Arch and such don't maintain up to date version, better use another way. | Debian, Ubuntu, Arch and such don't maintain up to date version, better use another way. | ||
− | + | === Rustup === | |
[https://rustup.rs/ Rustup is a solution to install and maintain rust versions] | [https://rustup.rs/ Rustup is a solution to install and maintain rust versions] | ||
Caution : it can handle rust system packages, but better uninstall them first. | Caution : it can handle rust system packages, but better uninstall them first. | ||
+ | |||
+ | |||
+ | === IDE === | ||
+ | |||
+ | [https://www.rust-lang.org/tools Links to various IDE plugins for vim and others] |
Latest revision as of 12:39, 16 September 2023
Contents
Ressources pédagogiques
The Wikipedia quick introduction to Rust
Rust Book
The Rust book is the official training support for Rust
Rustlings
A git repository in rust to learn the language
Awesome Rust
A list of everything rust: pedagogic resources, libraries, and more
Exercises
https://exercism.org/tracks/rust/exercises/
Install Rust
System package install
Debian, Ubuntu, Arch and such don't maintain up to date version, better use another way.
Rustup
Rustup is a solution to install and maintain rust versions
Caution : it can handle rust system packages, but better uninstall them first.