[lang-ref] String Interpolation (Variable) ( kotlin )
@Test
fun stringInterpolationVariable() {
// "$x"
val name = "John"
val s = "My name is $name."
assertEquals("My name is John.", s)
}
@Test
fun stringInterpolationVariableAlternative() {
// "${x}"
val name = "John"
val s = "My name is ${name}."
assertEquals("My name is John.", s)
}