diff --git a/main.go b/main.go index c1e9596..28ecbae 100644 --- a/main.go +++ b/main.go @@ -12,7 +12,7 @@ func output(_ *resty.Client, _ string, width, height int, arr [][]Cell) { for i := 0; i < width; i++ { for j := 0; j < height; j++ { if arr[i][j].live { - fmt.Printf("█") + fmt.Printf("*") } else { fmt.Printf(" ") }