Created
April 26, 2020 14:29
-
-
Save gyugyu90/391295a6953c85afc41d1bbe72608c1a 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
fun main() { | |
val items = listOf("apple", "banana", "kiwifruit") | |
for (item in items) { | |
println(item) | |
} | |
for (index in items.indices) { | |
println("인덱스 $index 번에 있는 항목은 ${items[index]} 입니다.") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment