Ellen Spertus
12/01/2024, 3:03 AM// version 1
println(comment.body)
println()
// version 2
println("${comment.body}\n")
// version 3
println(comment.body + "\n")
ephemient
12/01/2024, 4:54 AMSystem.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