Last active
March 4, 2020 18:34
-
-
Save felipebweber/cd5c785e4a6626ef534deb6b01ec89a1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let a = 1 | |
let b = 7 | |
let min: Int | |
if a < b { | |
min = a | |
} else { | |
min = b | |
} | |
print("Menor: \(min)") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment