Start exercising grow code, breaking the VM

This commit is contained in:
Ian Gulliver
2021-11-20 19:17:35 -10:00
parent 510680d6c5
commit f6a598a559
6 changed files with 107 additions and 12 deletions

View File

@@ -17,10 +17,10 @@ func main() {
log.Fatal(err)
}
def, err := loadDefinition(defFile)
def, err := NewDefinition(defFile)
if err != nil {
log.Fatal(err)
}
log.Printf("%+v", def)
def.Grow()
}