Last active
April 1, 2018 06:20
-
-
Save sajjadyousefnia/90b5a4c7743424c2c04407d8771965fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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