print() instead of println()

This commit is contained in:
Ben Barth 2018-12-09 00:36:50 -05:00 committed by GitHub
parent 66d476512f
commit d3ba7f2d02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
e.kt
View File

@ -1,5 +1,5 @@
fun main(args: Array<String>) {
while (true) {
println("e")
print("e")
}
}