2
2
espelhamento de https://github.com/Hilbis/Hilbish sincronizado 2025-07-18 16:52:02 +00:00
Hilbish/moonlight/cont_clua.go

13 linhas
161 B
Go

//go:build midnight
package moonlight
type GoCont struct{
vals []Value
f GoFunctionFunc
}
type Cont interface{}
func (gc *GoCont) Next() Cont {
return gc
}