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