More stdlib: sorting, better Appendable, other minor changes. (#245)

This commit is contained in:
Nikolay Igotti
2017-02-16 17:00:37 +03:00
committed by GitHub
parent f0a99963a7
commit 38c6b5e9ad
8 changed files with 312 additions and 54 deletions
@@ -0,0 +1,4 @@
fun main(a: Array<String>) {
println(arrayOf("x", "a", "b").sorted().toString())
println(intArrayOf(239, 42, -1, 100500, 0).sorted().toString());
}