Nick a3422e8cd8 HEAD detached at 4.8.0
Changes to be committed:
	modified:   Cargo.lock
	modified:   exercises/intro/intro1.rs
	modified:   exercises/intro/intro2.rs
	modified:   exercises/variables/variables1.rs
	modified:   exercises/variables/variables2.rs
	modified:   exercises/variables/variables3.rs
	modified:   exercises/variables/variables4.rs
	modified:   exercises/variables/variables5.rs
	modified:   exercises/variables/variables6.rs
2022-07-18 12:32:15 -04:00

22 lines
1.1 KiB
Rust

// intro1.rs
// 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.
// Execute the command `rustlings hint intro1` for a hint.
fn main() {
println!("Hello and");
println!(r#" welcome to... "#);
println!(r#" _ _ _ "#);
println!(r#" _ __ _ _ ___| |_| (_)_ __ __ _ ___ "#);
println!(r#" | '__| | | / __| __| | | '_ \ / _` / __| "#);
println!(r#" | | | |_| \__ \ |_| | | | | | (_| \__ \ "#);
println!(r#" |_| \__,_|___/\__|_|_|_| |_|\__, |___/ "#);
println!(r#" |___/ "#);
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!");
}