The code below compiles and executes without issue, but is not idiomatic kotlin. What is a better way to impelement the printlln()?
fun main() {
val name: String = "Amos"
val grade: Float = 95.5f
println("My name is " + name + ". I score " + grade + " points on the last coding quiz.")
}