Last active
March 4, 2020 18:34
-
-
Save felipebweber/a0a0ec03a477f6a5bd1c89e6891f3c2f 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 max: Int | |
if a > b { | |
max = a | |
} else { | |
max = b | |
} | |
print("Maior: \(max)") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment