The example in the [Janet Docs, Networking](https://janet-lang.org/docs/networking.html), TCP, Clients ``` (with [conn (net/connect "127.0.0.1" "8000" :stream)] (printf "Connected to %q!" conn) (:write conn "Echo...") # ... ) ``` causes an "unexpected network error" when executed on Windows: > error: > in net/write [src/core/net.c] on line 907 Substituting `net/write` with `ev/write` yields the same error, just shifting its source: > error: > in ev/write [src/core/ev.c] on line 3190 On Linux, everything works fine.