Think as a compiler

Report a typo

Declare two variables of type String, name them first and last, and assign your first name and your last name to them.

Declare one more variable of type Int with the name age and assign your age to it.

Write a program in Kotlin
fun main() {

// put your code above
println("My name is $first $last and I’m $age years old")
}
___

Create a free account to access the full topic