13 lines
165 B
Go
13 lines
165 B
Go
|
|
package grow
|
||
|
|
|
||
|
|
import "github.com/firestuff/subcoding/vm"
|
||
|
|
|
||
|
|
type Status struct {
|
||
|
|
TargetScore uint64
|
||
|
|
|
||
|
|
Attempts uint64
|
||
|
|
|
||
|
|
BestScore uint64
|
||
|
|
BestProgram *vm.Program
|
||
|
|
}
|