func Join
crossing ActionJoin seats the caller as X (if the seat is open) or O (if X is taken). Panics if both seats are already filled.
Package tictactoe is a two-player tic-tac-toe realm. The first caller to Join becomes X, the second becomes O; player...
Package tictactoe is a two-player tic-tac-toe realm. The first caller to Join becomes X, the second becomes O; players then alternate Move calls by cell index (0-8, left-to-right top-to-bottom) until someone wins or the board fills. Reset starts a fresh game once the current one has ended.
Join seats the caller as X (if the seat is open) or O (if X is taken). Panics if both seats are already filled.
Move places the caller's mark at the given cell (0-8) if it is their turn and the cell is empty, then checks for a win or a draw.
Render draws the current board and game status as markdown.
Reset clears the board for a new game. Only callable once the current game has ended (someone won or the board is full).