5 lines
73 B
Kotlin
Vendored
5 lines
73 B
Kotlin
Vendored
package base
|
|
|
|
interface UExpression {
|
|
fun evaluate(): Any? = "fail"
|
|
} |