mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
7 lines
114 B
Nim
7 lines
114 B
Nim
import net
|
|
|
|
let sock = newSocket(AF_UNIX, SOCK_STREAM, IPPROTO_IP)
|
|
|
|
sock.connectUnix("sock")
|
|
sock.send("hello\n")
|