<@U0B8ZP13Q> It's not the length. Pasting the outp...
# klaxon
j
@cedric It's not the length. Pasting the output of this into a multiline string in Kotlin doesn't break anything.
Copy code
class SillyLongJsonTest {

    @Test
    fun `test`() {
        val jsonArray = json {
            val jsonArray = array((0..2300).map { obj("element" to it) })
            obj(
                "something" to jsonArray
            )

        }
        println(jsonArray.toJsonString(true))
    }
}