Skip to content

Instantly share code, notes, and snippets.

@fitomad
Created September 2, 2018 20:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fitomad/36e8335941c25bf78b87e8aab273d488 to your computer and use it in GitHub Desktop.
Save fitomad/36e8335941c25bf78b87e8aab273d488 to your computer and use it in GitHub Desktop.
var ahoraQue = true
for _ in 0...5 {
if ahoraQue {
print("Ahora Sí")
}
else {
print("Ahora No")
}
ahoraQue.toggle() // Cambie de true a false, o de false a true
}
/*
Ahora Sí
Ahora No
Ahora Sí
Ahora No
Ahora Sí
Ahora No
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment