feat(intro): Add intro section.

This commit is contained in:
apogeeoak
2021-04-24 13:15:34 -04:00
parent 6b6dc9dd48
commit 21c9f44168
5 changed files with 54 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
// intro2.rs
// Make the code print a greeting to the world.
// Execute `rustlings hint intro2` for a hint.
// I AM NOT DONE
fn main() {
println!("Hello {}!");
}