Files
subcoding/grow/status.go

11 lines
146 B
Go
Raw Permalink Normal View History

2021-11-20 20:02:16 -10:00
package grow
import "github.com/firestuff/subcoding/vm"
type Status struct {
Attempts uint64
2021-11-24 19:52:22 -08:00
BestScores []*Score
2021-11-20 20:02:16 -10:00
BestProgram *vm.Program
}