Reputation: 390
I'm using the Kotlin REPL from Intellij Idea.
When I type this:
println("line 1 ")
println("line 2 ")
print("same ")
print("line")
I expect this output:
"line 1 "
"line 2 "
"same line"
But instead I get:
"line 1 line 2 same line"
Why?
Upvotes: 5
Views: 849
Reputation: 31700
I was able to replicate this in my version of IntelliJ as well (2020.1.1). This seems to be a pretty old bug in IntelliJ. While it is listed on a backlog, I am not sure what that means in terms of priority for a fix.
Upvotes: 4