7 lines
94 B
Plaintext
7 lines
94 B
Plaintext
|
|
fn square_of_greater(a: i32, b: i32) -> i32 {
|
|
if (a < b)
|
|
a * a
|
|
else
|
|
b * b
|
|
} |