1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-17 10:49:56 +00:00
janet/examples/udpclient.janet
2020-06-02 19:47:50 -05:00

6 lines
142 B
Plaintext

(def conn (net/connect "127.0.0.1" "8009" :datagram))
(:write conn (string/format "%q" (os/cryptorand 16)))
(def x (:read conn 1024))
(pp x)