rustlings/exercises/functions/functions1.rs
IloveKanade b1dbf15193 my rustlng answer 3.1 ~ 4.1.2
Signed-off-by: IloveKanade <xjlgxlgx@gmail.com>
2022-04-24 17:30:27 +08:00

10 lines
139 B
Rust

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