rustlings/exercises/functions/functions5.rs
2022-05-28 02:04:58 +02:00

13 lines
297 B
Rust

// functions5.rs
// Make me compile! Execute `rustlings hint functions5` for hints :)
fn main() {
let answer = square(3);
println!("The answer is {}", answer);
}
// This funtion implicitly returns, there is no need for the ; after num * num
fn square(num: i32) -> i32 {
num * num
}