Interpolation de la chaîne Kotlin

// kotlin string interpolation
var age = 21
println("My Age Is: $age")
Remember: "$" sign is used for interpolation
Assassin