mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-01-09 20:03:24 +03:00
13 lines
297 B
Rust
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
|
|
}
|