blob: 8c4f6422d3c92f5dc0f15c8444b68f37839d6295 [file] [log] [blame]
internal abstract class Shape {
var color: String
abstract fun area(): Double
}