You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an extra line when printing the const FENISH_LINE: &str =
it appends a WELCOME constant. const WELCOME: &str = r#" welcome to... Zustlins"#; as shown in the Listing 1.
★ All exercises completed! ★
+----------------------------------------------------+
| You made it to the End of this Homework!|
+-------------------------- ------------------------+
\\/
▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒
▒▒▒▒ ▒▒ ▒▒ ▒▒ ▒▒ ▒▒ ▒▒ ▒▒▒▒
▒▒▒▒ ▒▒ ▒▒ ▒▒ ▒▒ ▒▒ ▒▒▒▒
░░▒▒▒▒░░▒▒ ▒▒ ▒▒ ▒▒ ▒▒░░▒▒▒▒
▓▓▓▓▓▓▓▓ ▓▓ ▓▓██ ▓▓ ▓▓██ ▓▓ ▓▓▓▓▓▓▓▓
▒▒▒▒ ▒▒ ████ ▒▒ ████ ▒▒░░ ▒▒▒▒
▒▒ ▒▒▒▒▒▒ ▒▒▒▒▒▒ ▒▒▒▒▒▒ ▒▒
▒▒▒▒▒▒▒▒▒▒▓▓▓▓▓▓▒▒▒▒▒▒▒▒▓▓▒▒▓▓▒▒▒▒▒▒▒▒
▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
▒▒▒▒▒▒▒▒▒▒██▒▒▒▒▒▒██▒▒▒▒▒▒▒▒▒▒
▒▒ ▒▒▒▒▒▒▒▒▒▒██████▒▒▒▒▒▒▒▒▒▒ ▒▒
▒▒ ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ ▒▒
▒▒ ▒▒ ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ ▒▒ ▒▒
▒▒ ▒▒ ▒▒ ▒▒ ▒▒ ▒▒
▒▒ ▒▒ ▒▒ ▒▒
We hope you enjoyed learning about the various aspects of Rust!
If you noticed any issues, please don't hesitate to report them to our repo.You can also contribute your own exercises to help the greater community!const WELCOME: &str = r#" welcome to... Zustlins
Listing 1. Small Typo.
Possible solution
Since I was actually doing the rustlings some days ago, I took a look at the main.rs code and did a develop branch with a modified version in my repository. Yet I do not know if this is what is expected and I haven't test enough please compare with the following main.rs:
Issue
There is an extra line when printing the
const FENISH_LINE: &str =
it appends a WELCOME constant.
const WELCOME: &str = r#" welcome to... Zustlins"#;
as shown in the Listing 1.Listing 1. Small Typo.
Possible solution
Since I was actually doing the rustlings some days ago, I took a look at the
main.rs
code and did a develop branch with a modified version in my repository. Yet I do not know if this is what is expected and I haven't test enough please compare with the followingmain.rs
:The text was updated successfully, but these errors were encountered: