7 lines
88 B
Go
7 lines
88 B
Go
|
package main
|
||
|
|
||
|
type Callable struct {
|
||
|
arity int
|
||
|
call func(*Interpreter, ...any) any
|
||
|
}
|