Add display initial to engine execution

This commit is contained in:
lash
2023-04-06 09:14:53 +01:00
parent c748daa8f7
commit f0bfff3a20
6 changed files with 29 additions and 9 deletions

View File

@@ -28,6 +28,10 @@ func main() {
os.Exit(1)
}
b := bytes.NewBuffer(nil)
en.WriteResult(b)
fmt.Println(b.String())
running := true
for running {
reader := bufio.NewReader(os.Stdin)