rustlings/exercises/functions/functions5.rs
2021-05-17 09:29:44 +03:00

13 lines
253 B
Rust

// functions5.rs
// Make me compile! Execute `rustlings hint functions5` for hints :)
fn main() {
let answer = square(3);
println!("The answer is {}", answer);
}
fn square(num: i32) -> i32 {
num * num //remove the semicolon to complile
}