Skip to content

Instantly share code, notes, and snippets.

@rail-rate
Created August 4, 2019 12:17
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 rail-rate/a75c21de5b5876990d47fd299d3588bc to your computer and use it in GitHub Desktop.
Save rail-rate/a75c21de5b5876990d47fd299d3588bc to your computer and use it in GitHub Desktop.
List4
fun main(args: Array<String>) {
val a = listOf(1, 2 ,3) //3つの要素を作って1~3の数字を順番に入れた
a[0] = 5 //最初の要素を1から5に変更した
for(x in a) println(x)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment