intor1.rs

This commit is contained in:
enforcer007 2022-11-13 12:33:30 +05:30
parent 97e3c419aa
commit fbbaeb2463

View File

@ -9,8 +9,6 @@
// 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!
// I AM NOT DONE
fn main() {
println!("Hello and");
println!(r#" welcome to... "#);
@ -26,5 +24,7 @@ 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."
);
}