bugfix: working 'alive' character

This commit is contained in:
Baipyrus 2024-04-14 22:02:46 +02:00
parent 511a837495
commit 287c65c28e

View File

@ -12,7 +12,7 @@ func output(_ *resty.Client, _ string, width, height int, arr [][]Cell) {
for i := 0; i < width; i++ { for i := 0; i < width; i++ {
for j := 0; j < height; j++ { for j := 0; j < height; j++ {
if arr[i][j].live { if arr[i][j].live {
fmt.Printf("") fmt.Printf("*")
} else { } else {
fmt.Printf(" ") fmt.Printf(" ")
} }