Fix printline to println in intro2.rs

This commit is contained in:
Rock070 2023-12-15 01:59:53 +08:00
parent 8fea9a43ab
commit b4779c5ea1

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!")
}