rustlings/exercises/functions/functions5.rs

13 lines
297 B
Rust
Raw Normal View History

2018-02-22 09:09:53 +03:00
// functions5.rs
// Make me compile! Execute `rustlings hint functions5` for hints :)
fn main() {
let answer = square(3);
println!("The answer is {}", answer);
}
2022-05-28 03:04:58 +03:00
// This funtion implicitly returns, there is no need for the ; after num * num
fn square(num: i32) -> i32 {
2022-05-28 03:04:58 +03:00
num * num
}