dump

fun dump(block: DumpDsl.() -> Unit): String(source)

Creates an information dump.

Example

println(dump {
section("Hello") {
value("Path", "first")
value("Other", "first", "second")
}
})