Add call_me function to print "Hello World!"

This commit is contained in:
Rock070 2023-12-17 00:02:42 +08:00
parent fa29595ab2
commit 33a8b24bc5

View File

@ -3,7 +3,9 @@
// Execute `rustlings hint functions1` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
fn call_me() {
println!("Hello World!");
}
fn main() {
call_me();