rustlings/exercises/functions/functions1.rs
2023-10-09 16:13:38 +00:00

15 lines
184 B
Rust

// functions1.rs
//
// Execute `rustlings hint functions1` or use the `hint` watch subcommand for a
// hint.
fn call_me() {
println!("call me");
}
fn main() {
call_me();
}