glox/callable.go

7 lines
88 B
Go
Raw Normal View History

2024-10-09 19:57:52 +03:00
package main
type Callable struct {
arity int
call func(*Interpreter, ...any) any
}