2024-05-20 20:43:18 -04:00
|
|
|
// TODO: Fix the function body without chaning the signature.
|
2015-09-18 20:28:27 -04:00
|
|
|
fn square(num: i32) -> i32 {
|
|
|
|
num * num;
|
|
|
|
}
|
2024-05-20 20:43:18 -04:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let answer = square(3);
|
|
|
|
println!("The square of 3 is {answer}");
|
|
|
|
}
|