2021-04-24 18:15:34 +01:00
|
|
|
// intro1.rs
|
2023-05-29 18:39:08 +01:00
|
|
|
//
|
2021-04-24 18:15:34 +01:00
|
|
|
// About this `I AM NOT DONE` thing:
|
|
|
|
// We sometimes encourage you to keep trying things on a given exercise, even
|
|
|
|
// after you already figured it out. If you got everything working and feel
|
|
|
|
// ready for the next exercise, remove the `I AM NOT DONE` comment below.
|
2022-07-11 12:19:19 +01:00
|
|
|
//
|
2023-05-29 18:39:08 +01:00
|
|
|
// If you're running this using `rustlings watch`: The exercise file will be
|
|
|
|
// reloaded when you change one of the lines below! Try adding a `println!`
|
|
|
|
// line, or try changing what it outputs in your terminal. Try removing a
|
|
|
|
// semicolon and see what happens!
|
|
|
|
//
|
|
|
|
// Execute `rustlings hint intro1` or use the `hint` watch subcommand for a
|
|
|
|
// hint.
|
2021-04-24 18:15:34 +01:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
println!("Hello and");
|
|
|
|
println!(r#" welcome to... "#);
|
|
|
|
println!(r#" _ _ _ "#);
|
|
|
|
println!(r#" _ __ _ _ ___| |_| (_)_ __ __ _ ___ "#);
|
|
|
|
println!(r#" | '__| | | / __| __| | | '_ \ / _` / __| "#);
|
|
|
|
println!(r#" | | | |_| \__ \ |_| | | | | | (_| \__ \ "#);
|
|
|
|
println!(r#" |_| \__,_|___/\__|_|_|_| |_|\__, |___/ "#);
|
|
|
|
println!(r#" |___/ "#);
|
2021-04-27 01:28:17 +01:00
|
|
|
println!();
|
|
|
|
println!("This exercise compiles successfully. The remaining exercises contain a compiler");
|
|
|
|
println!("or logic error. The central concept behind Rustlings is to fix these errors and");
|
|
|
|
println!("solve the exercises. Good luck!");
|
2022-07-11 12:19:19 +01:00
|
|
|
println!();
|
|
|
|
println!("The source for this exercise is in `exercises/intro/intro1.rs`. Have a look!");
|
2023-02-12 14:47:58 +00:00
|
|
|
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.")
|
2021-04-24 18:15:34 +01:00
|
|
|
}
|