Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 518 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 518 Bytes

tic-tac-go

TIC-TAC-TOE game in Golang

Build

git clone https://github.com/oshankkumar/tic-tac-go.git
cd tic-tac-go
go build -o tictactoe

Run (Go native)

./tictactoe

This will start hosting the game server on your local machine

You can use telnet or nc client to connect to server

Give this command from any other machine to connect to server

telnet [ ip_addr_of_your_server_machine ] 8000

or You can give this command from any other terminal of your local machine

telnet localhost 8000