7 lines
103 B
Plaintext
7 lines
103 B
Plaintext
fn min(a: i32, b: i32) -> i32 {
|
|
if a < b {
|
|
return a;
|
|
} else {
|
|
return b;
|
|
}
|
|
} |