741e031ff1
Use formatter in converter tests Reformat test data
10 lines
238 B
Kotlin
10 lines
238 B
Kotlin
abstract class Shape() {
|
|
public var color: String? = null
|
|
public open fun setColor(c: String?) {
|
|
color = c
|
|
}
|
|
public open fun getColor(): String? {
|
|
return color
|
|
}
|
|
public abstract fun area(): Double
|
|
} |