Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

tictactoe.go
// Package tictactoe is a basic tictactoe game.
package tictactoe

// WinSize sets how many we need next to each other.
const WinSize = 3

// Runes for record types on the Board.
const (
	Emp rune = '_'
	P_1 rune = 'x'
	P_2 rune = 'o'
)

// Board represents the board the game played on.
type Board [][]rune