Complete intro exercises

This commit is contained in:
Suzie Kim 2024-01-31 10:03:22 -05:00
parent 8d0aa11a35
commit c440da8963
No known key found for this signature in database
GPG key ID: 83C4CC3808F9AAE9
2 changed files with 2 additions and 4 deletions

View file

@ -13,7 +13,6 @@
// Execute `rustlings hint intro1` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
fn main() {
println!("Hello and");
@ -37,5 +36,5 @@ fn main() {
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.")
println!("up, and then run `rustlings lsp` before continuing.");
}

View file

@ -5,8 +5,7 @@
// Execute `rustlings hint intro2` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
fn main() {
printline!("Hello there!")
println!("Hello there!")
}