From 5b3de563ea2a86ac0cf2ec3c6bb91357f9bd38c9 Mon Sep 17 00:00:00 2001 From: wuyangfan Date: Fri, 22 May 2026 18:11:29 +0800 Subject: [PATCH] docs: mention offline rustup docs in intro --- exercises/00_intro/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/exercises/00_intro/README.md b/exercises/00_intro/README.md index d32e4a8b..a4dfae5c 100644 --- a/exercises/00_intro/README.md +++ b/exercises/00_intro/README.md @@ -4,5 +4,9 @@ Rust uses the `print!` and `println!` macros to print text to the console. ## Further information +If you installed Rust with `rustup`, you can also open local, offline copies of +Rust's documentation with commands such as `rustup doc --book`, +`rustup doc --std` and `rustup doc --rust-by-example`. + - [Hello World](https://doc.rust-lang.org/rust-by-example/hello.html) - [Formatted print](https://doc.rust-lang.org/rust-by-example/hello/print.html)