[lang-ref] ( escape_and_quote ) ( kotlin )

@Test
fun escapeAndQuote() {
	val e = """It's "OK"."""
	val a = "It's \"OK\"."

	assertEquals(e, a)
}