mirror of
https://github.com/Hilbis/Hilbish
synced 2025-07-01 16:52:03 +00:00
13 lines
161 B
Go
13 lines
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
|
|
}
|