rustlings/functions/functions1.rs

46 lines
447 B
Rust
Raw Normal View History

2015-09-18 07:12:00 +06:00
// Make me compile! Scroll down for hints :)
fn main() {
call_me();
}
2016-12-30 16:04:02 +07:00
fn call_me() {
println!("thank you for calling me :)");
}
2015-09-18 07:12:00 +06:00
// 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?