C. Rib
C. Rib

Reputation: 390

Kotlin's REPL println not printing to new line, instead prints everything to same line

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

Upvotes: 5

Views: 849

Answers (1)

Todd
Todd

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

Related Questions