11 lines
146 B
Go
11 lines
146 B
Go
package grow
|
|
|
|
import "github.com/firestuff/subcoding/vm"
|
|
|
|
type Status struct {
|
|
Attempts uint64
|
|
|
|
BestScores []*Score
|
|
BestProgram *vm.Program
|
|
}
|