[lang-ref] ( string_interpolation_expression ) ( kotlin )

@Test
fun stringInterpolationExpression() {
	// "${x}"
	val age = 20
	val s = "I am ${age - 2} years old."
	assertEquals("I am 18 years old.", s)
}