var grid4x4 = [4][4]uint8{
{1, 2, 3, 4}, {5, 6, 7, 8}, {9, 10, 11, 12}, {13, 14, 15, 16},} var grid4x4 = [4][4]uint8{
{ 1, 2, 3, 4},
{ 5, 6, 7, 8},
{ 9, 10, 11, 12},
{13, 14, 15, 16},
{101, 102, 103, 104},
}
This is one place it may have been nice to depart from Go convention for octal int literals, instead taking, for example, 0o777 (lower case oh), while treating leading zeros as decimal. otoh, mixing zeros and 'o's is usually a bad idea.
--
How readable is il1 in your font?
That's why I went through my fonts used and replaced all the zeros with naught symbols (zero with a diagonal slash through it) a useful trick for making octal and the like more readable.
--