Default behavior
Server echoes input
Messages come back as `ECHO: <message>`, making round-trip checks obvious.
UDP experiment
A focused echo workflow that sends a message to the server and returns it with a predictable prefix. This is the clearest starting point for understanding datagram request and response behavior.
Default behavior
Messages come back as `ECHO: <message>`, making round-trip checks obvious.
Why it matters
It isolates transport behavior without mixing in extra protocol concerns.
Workflow
Run locally
python projects/udp-echo/server.py
python projects/udp-echo/client.py