Skip to content

Instantly share code, notes, and snippets.

@rail-rate
Created August 4, 2019 12:15
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/6cafd5fc773fa800216468db8c07a4b2 to your computer and use it in GitHub Desktop.
Save rail-rate/6cafd5fc773fa800216468db8c07a4b2 to your computer and use it in GitHub Desktop.
List3
fun main(args: Array<String>) {
val a = arrayOf(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