9 lines
135 B
Go
9 lines
135 B
Go
![]() |
package main
|
||
|
|
||
|
// initCells initialize the played cells to empty
|
||
|
func initCells() {
|
||
|
for i := range cells {
|
||
|
cells[i] = emptyCell
|
||
|
}
|
||
|
}
|