Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Last active April 1, 2018 06:20
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 sajjadyousefnia/90b5a4c7743424c2c04407d8771965fe to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/90b5a4c7743424c2c04407d8771965fe to your computer and use it in GitHub Desktop.
var numbers: List<Int> = listOf(1, 2, 3, 4, 5)
var names: List<String> = listOf("sajjad", "mammad", "gholam")
for (name in names) {
println(name)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment