Skip to content

Instantly share code, notes, and snippets.

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