Skip to content

Instantly share code, notes, and snippets.

@gyugyu90
Created April 26, 2020 14:29
Show Gist options
  • Save gyugyu90/391295a6953c85afc41d1bbe72608c1a to your computer and use it in GitHub Desktop.
Save gyugyu90/391295a6953c85afc41d1bbe72608c1a to your computer and use it in GitHub Desktop.
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