4 lines
70 B
Kotlin
4 lines
70 B
Kotlin
trait INode {
|
|
open fun getTag() : Tag?
|
|
open fun toKotlin() : String?
|
|
} |