0 / 60 seg.

Why does not this code snippet compile?

class Cat (name: String) {
  fun greet() { println("Hello ${this.name}") }
}
fun main() {
  val thunderCat = Cat("ThunderCat")
  thunderCat.greet()
}