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