Andrew Kushyk bd1949961c fun
2024-04-24 07:04:52 +00:00

14 lines
189 B
Rust

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