Skip to content

Instantly share code, notes, and snippets.

@felipebweber
Last active March 4, 2020 18:34
Show Gist options
  • Save felipebweber/a0a0ec03a477f6a5bd1c89e6891f3c2f to your computer and use it in GitHub Desktop.
Save felipebweber/a0a0ec03a477f6a5bd1c89e6891f3c2f to your computer and use it in GitHub Desktop.
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