5

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?

REPL console output

Animesh Sahu
  • 7,445
  • 2
  • 21
  • 49
C. Rib
  • 340
  • 3
  • 19

1 Answers1

4

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.

Todd
  • 30,472
  • 11
  • 81
  • 89