Ben Lubar
Ben Lubar
Currently, the AI knows exactly where all ores are before it even starts digging. Implement some sort of exploration system.
Example: https://gist.github.com/BenLubar/851d3de63699f50e76ef0f866a0049a3 Since deadcode probably isn't going to be able to parse cgo very easily, it's best to just assume that every function with `//export exactFunctionName` on the line before...
``` go fmt := import("fmt") x := 0 fmt.Println(x) // A y := x = x + 1 fmt.Println(x, y) ``` This program prints: ``` 0 1 2 ``` Comment...