summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorliv <mokou@fastmail.com>2023-02-12 15:47:58 +0100
committerliv <mokou@fastmail.com>2023-02-12 15:47:58 +0100
commit957522a4926afafd2ea577791d1f21d8532b1bca (patch)
treead0c8367e1cda2c21c47a73ed0aee7d3a8442340
parentac050fb7ce76437f05e7f194d5f9adbe1cec7712 (diff)
feat(intro1): add note on rust-analyzer usage
-rw-r--r--exercises/intro/intro1.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/exercises/intro/intro1.rs b/exercises/intro/intro1.rs
index 45c5acb..cfc55c3 100644
--- a/exercises/intro/intro1.rs
+++ b/exercises/intro/intro1.rs
@@ -26,5 +26,12 @@ fn main() {
println!("solve the exercises. Good luck!");
println!();
println!("The source for this exercise is in `exercises/intro/intro1.rs`. Have a look!");
- println!("Going forward, the source of the exercises will always be in the success/failure output.");
+ println!(
+ "Going forward, the source of the exercises will always be in the success/failure output."
+ );
+ println!();
+ println!(
+ "If you want to use rust-analyzer, Rust's LSP implementation, make sure your editor is set"
+ );
+ println!("up, and then run `rustlings lsp` before continuing.")
}