mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-10-09 15:49:39 +00:00
6 lines
107 B
Kotlin
6 lines
107 B
Kotlin
package gay.pizza.pork.evaluator
|
|
|
|
fun interface CallableFunction {
|
|
fun call(arguments: Arguments): Any
|
|
}
|