2018-02-21 22:09:53 -08:00
|
|
|
// functions5.rs
|
2023-05-29 18:39:08 +01:00
|
|
|
//
|
|
|
|
// Execute `rustlings hint functions5` or use the `hint` watch subcommand for a
|
|
|
|
// hint.
|
2015-09-18 20:28:27 -04:00
|
|
|
|
2019-11-11 13:38:24 +01:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2015-09-18 20:28:27 -04:00
|
|
|
fn main() {
|
|
|
|
let answer = square(3);
|
2022-07-12 11:08:29 +02:00
|
|
|
println!("The square of 3 is {}", answer);
|
2015-09-18 20:28:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn square(num: i32) -> i32 {
|
|
|
|
num * num;
|
|
|
|
}
|