mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-21 21:42:23 -05:00
The string doesn't have to be a raw string
This commit is contained in:
parent
a610fc1bc2
commit
87001a68c0
1 changed files with 2 additions and 2 deletions
|
@ -411,7 +411,7 @@ fn rustc_exists() -> bool {
|
|||
.unwrap_or(false)
|
||||
}
|
||||
|
||||
const DEFAULT_OUT: &str = r#"Thanks for installing Rustlings!
|
||||
const DEFAULT_OUT: &str = "Thanks for installing Rustlings!
|
||||
|
||||
Is this your first time? Don't worry, Rustlings was made for beginners! We are
|
||||
going to teach you a lot of things about Rust, but before we can get
|
||||
|
@ -437,7 +437,7 @@ started, here's a couple of notes about how Rustlings operates:
|
|||
autocompletion, run the command `rustlings lsp`.
|
||||
|
||||
Got all that? Great! To get started, run `rustlings watch` in order to get the first
|
||||
exercise. Make sure to have your editor open!"#;
|
||||
exercise. Make sure to have your editor open!";
|
||||
|
||||
const FENISH_LINE: &str = "+----------------------------------------------------+
|
||||
| You made it to the Fe-nish line! |
|
||||
|
|
Loading…
Reference in a new issue