rustlings/old_curriculum/functions/functions1.rs

45 lines
403 B
Rust
Raw Normal View History

2018-02-22 00:09:53 -06:00
// functions1.rs
2015-09-17 20:12:00 -05:00
// Make me compile! Scroll down for hints :)
fn main() {
call_me();
}
// This main function is calling a function that it expects to exist, but the
// function doesn't exist. It expects this function to have the name `call_me`.
// It expects this function to not take any arguments and not return a value.
// Sounds a lot like `main`, doesn't it?