Attempt of listOf() support. (#92)

This commit is contained in:
Nikolay Igotti
2016-12-01 16:09:26 +03:00
committed by GitHub
parent 85aca55ee5
commit f9167ea91e
7 changed files with 52 additions and 3 deletions
@@ -0,0 +1,5 @@
fun main(args : Array<String>) {
val list = arrayListOf("a", "b", "c")
for (element in list) print(element)
println()
}