26 lines
467 B
Go
26 lines
467 B
Go
![]() |
package main
|
||
|
|
||
|
const (
|
||
|
banner = `
|
||
|
~~~~~~~~~~~~~~~
|
||
|
TIC~TAC~TOE
|
||
|
~~~~~~~~~~~~~~~`
|
||
|
|
||
|
// skin options :-)
|
||
|
player1, player2 = "X", "O"
|
||
|
|
||
|
sepHeader = `/---+---+---\`
|
||
|
sepLine = `+---+---+---+`
|
||
|
sepFooter = `\---+---+---/`
|
||
|
sepCell = "|"
|
||
|
|
||
|
/*
|
||
|
Try it with this instead :)
|
||
|
|
||
|
sepHeader = "╔═══╦═══╦═══╗"
|
||
|
sepLine = "╠═══╬═══╬═══╣"
|
||
|
sepFooter = "╚═══╩═══╩═══╝"
|
||
|
sepCell = "║"
|
||
|
*/
|
||
|
)
|