/echo-go

Simple echo TCP server

Primary LanguageGo

Echo-go

Simple echo TCP server written in Go.

How to use

Run the server (listens on port 8000 by default):

go run .

Connect to server with netcat or telnet:

telnet 127.0.0.1 8000
# Or
nc 127.0.0.1 8000