rustlings/exercises/functions/functions1.rs
UlyssesPrime 86f9341c62 Initial
2022-04-20 01:38:35 -04:00

11 lines
151 B
Rust

// functions1.rs
// Make me compile! Execute `rustlings hint functions1` for hints :)
fn main() {
call_me();
}
fn call_me() {
let num = 5;
}