Run »
fun main() { val firstName = "John " val lastName = "Doe" val fullName = firstName + lastName println(fullName) }
John Doe