- Simple Go Programs to allow users to send messages between each other in a chat room
- Uses only standard library; just
go run ...
Client
: User-facing program to send messagesServer
: Server to facilitate said messages; Uses Go channels to sync concurrent processesServer-Lock
: Server ...; Uses Read/Write Mutex locks to sync concurrent processes