Files
rustlings/exercises/02_functions/functions1.rs
2024-04-07 19:53:54 -04:00

13 lines
191 B
Rust

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