fun main(args: Array<String>) {
//sampleStart
val cat = Cat("Kitty")
val dog = Dog("Fido")
println("Hello ${cat.name} and ${dog.name} ")
//sampleEnd
}
xxxxxxxxxxval cat = Cat("Kitty")val dog = Dog("Fido")println("Hello ${cat.name} and ${dog.name} ")