rustlings/exercises/functions/functions1.rs
Stanislav Pankrashin e83883dead finished more
2022-06-21 13:34:09 +12:00

11 lines
147 B
Rust

// functions1.rs
// Make me compile! Execute `rustlings hint functions1` for hints :)
fn call_me() -> i32 {
1
}
fn main() {
call_me();
}