glox/callable.go
2024-10-09 19:57:52 +03:00

6 lines
88 B
Go

package main
type Callable struct {
arity int
call func(*Interpreter, ...any) any
}