Update exercises/03_if/if1.rs

Co-authored-by: liv <shadows@with.al>
This commit is contained in:
guizo792 2024-03-15 17:36:28 +00:00 committed by GitHub
parent 1da82a0eab
commit ae69f423cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,7 @@
pub fn bigger(a: i32, b: i32) -> i32 { pub fn bigger(a: i32, b: i32) -> i32 {
// Complete this function to return the bigger number! // Complete this function to return the bigger number!
// If both numbers are equal, any of them is returned. // If both numbers are equal, any of them can be returned.
// Do not use: // Do not use:
// - another function call // - another function call
// - additional variables // - additional variables