1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-25 14:43:16 +00:00
janet/examples/tcpclient.janet

7 lines
184 B
Plaintext
Raw Normal View History

(with [conn (net/connect "127.0.0.1" "8000")]
(printf "Connected to %q!" conn)
(:write conn "Echo...")
(print "Wrote to connection...")
(def res (:read conn 1024))
(pp res))