mirror of
https://github.com/janet-lang/janet
synced 2024-10-31 22:16:16 +00:00
f4a46ba6ea
This makes streams polymorphic with files in many cases. printf family functions still need porting.
14 lines
308 B
Plaintext
14 lines
308 B
Plaintext
(defn handler
|
|
"Simple handler for connections."
|
|
[stream]
|
|
(defer (:close stream)
|
|
(def id (gensym))
|
|
(def b @"")
|
|
(print "Connection " id "!")
|
|
(while (:read stream 1024 b)
|
|
(:write stream b)
|
|
(buffer/clear b))
|
|
(printf "Done %v!" id)))
|
|
|
|
(net/server "127.0.0.1" "8000" handler)
|