Skip to content

Instantly share code, notes, and snippets.

@fitomad
Last active December 21, 2018 10: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/e988feb5ab77329ffc4f6fd3a33d9361 to your computer and use it in GitHub Desktop.
Save fitomad/e988feb5ab77329ffc4f6fd3a33d9361 to your computer and use it in GitHub Desktop.
let porcentajes = [ 12.5, 99.5, 12.0, 75.0, 49.9, 51.5 ]
for porcentaje in porcentajes where porcentaje > 50.0
{
print(porcentaje)
}
/**
Los valores iterados son:
99.5
75.0
51.5
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment