Files
2021-03-08 17:52:51 +00:00

5 lines
73 B
Kotlin
Vendored

package base
interface UExpression {
fun evaluate(): Any? = "fail"
}