From 287c65c28e2e40e7d3d31d64af4d045440ba1e40 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Sun, 14 Apr 2024 22:02:46 +0200 Subject: [PATCH] bugfix: working 'alive' character --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(" ") }