1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-10 00:26:07 +02:00

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 {
// 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:
// - another function call
// - additional variables