(import (rnrs bytevectors)) (define client (socket PF_INET SOCK_DGRAM 0)) (connect client AF_INET (inet-pton AF_INET "127.0.0.1") 10000) (send client (string->utf8 "hello")) (send client (string->utf8 "")) (send client (string->utf8 "world")) (close client)