[lang-ref] String interpolation (expression) ( kotlin )

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