rustlings/exercises/functions/functions1.rs
Shreyas Vaderiyattil 0450a8c5b3 25.5%
2023-02-08 11:47:05 -05:00

11 lines
151 B
Rust

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