fun main() { val firstName = "Meera" val lastName = "Rao" val fullName = "$firstName $lastName" println("Hello, $fullName!") println("Your name has ${fullName.length} characters") }
Click Run to execute this code.