mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-10-10 16:19:37 +00:00
6 lines
128 B
Kotlin
6 lines
128 B
Kotlin
package gay.pizza.pork.evaluator
|
|
|
|
fun interface CallableFunction {
|
|
fun call(arguments: ArgumentList, stack: CallStack): Any
|
|
}
|