Merge pull request #1 from ninjapanzer/pks/intro1

Pks/intro1
This commit is contained in:
Paul Scarrone 2023-02-20 13:06:22 -05:00 committed by GitHub
commit 1462c6f093
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,8 +9,6 @@
// when you change one of the lines below! Try adding a `println!` line, or try changing // 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! // what it outputs in your terminal. Try removing a semicolon and see what happens!
// I AM NOT DONE
fn main() { fn main() {
println!("Hello and"); println!("Hello and");
println!(r#" welcome to... "#); println!(r#" welcome to... "#);
@ -33,5 +31,6 @@ fn main() {
println!( println!(
"If you want to use rust-analyzer, Rust's LSP implementation, make sure your editor is set" "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.") println!("up, and then run `rustlings lsp` before continuing.");
println!("hi");
} }