```// version 1 println(comment.body) println() /...
# codereview
e
Copy code
// version 1
println(comment.body)
println()

// version 2
println("${comment.body}\n")

// version 3
println(comment.body + "\n")
1️⃣ 5
2️⃣ 1
e
Copy code
System.out.appendLine(comment.body).appendLine()
isn't the shortest thing to write but if you're outputting to a
BufferedWriter
or
StringBuilder
instead then I'd do that