+ 4
Ethan shaji , Your mistakes are really small in the println b should be capital for button and i should be capital in image print command. class Button(width: Int, height: Int): Component(width, height) { private var name: String = "Button" fun tap() { println(name + " was tapped") } override fun show() { println("Showing a " + name) } } class Image(width: Int, height: Int): Component(width, height) { private var name: String = "Image" fun draw() { println(width.toString()+"x"+height.toString()) } override fun show() { println("Showing an " + name) } }
3rd Nov 2022, 3:23 PM
SoloProg
SoloProg - avatar