2018-02-22 06:09:53 +00:00
|
|
|
// functions5.rs
|
2015-09-19 00:28:27 +00:00
|
|
|
// Make me compile! Scroll down for hints :)
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let answer = square(3);
|
|
|
|
println!("The answer is {}", answer);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn square(num: i32) -> i32 {
|
|
|
|
num * num;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// This is a really common error that can be fixed by removing one character.
|
|
|
|
// It happens because Rust distinguishes between expressions and statements: expressions return
|
2018-11-09 19:31:14 +00:00
|
|
|
// a value based on its operand, and statements simply return a () type which behaves just like `void` in C/C++ language.
|
|
|
|
// We want to return a value of `i32` type from the `square` function, but it is returning a `()` type...
|
|
|
|
// They are not the same. There are two solutions:
|
|
|
|
// 1. Add a `return` ahead of `num * num;`
|
|
|
|
// 2. remove `;`, make it to be `num * num`
|