rustlings/exercises/functions/functions1.rs
____marcell c91e063bec wip
2020-08-25 01:01:52 +00:00

11 lines
164 B
Rust

// functions1.rs
// Make me compile! Execute `rustlings hint functions1` for hints :)
fn call_me() {
println!("hello world!");
}
fn main() {
call_me();
}