Made two implementations:
- A standard implementation using Go's net package
- A raw implementation using system calls
make run-standard
make run-custom
You can test either server using netcat:
nc localhost 8080
Type any message and press enter. The server will echo back your message. Type "quit" to close the connection.