rustlings/exercises/functions/functions1.rs
2022-09-09 14:46:59 +03:00

14 lines
198 B
Rust

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