Skip to content

Instantly share code, notes, and snippets.

@fitomad
Created December 21, 2018 10:13
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/3fb352b13d024d2339df2c5f16cd6a3b to your computer and use it in GitHub Desktop.
Save fitomad/3fb352b13d024d2339df2c5f16cd6a3b to your computer and use it in GitHub Desktop.
let objects: [Any] = [ "Esto", 12, "Es", "Un", 98.7, "String" ]
for case let object as String in objects
{
print(object)
}
/**
Esto
Es
Un
String
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment