5 lines
247 B
Common Lisp
5 lines
247 B
Common Lisp
(let ((proc (make-network-process :name "my sock"
|
|
:host 'local ;; or hostname string
|
|
:service 256)))
|
|
(process-send-string proc "hello socket world")
|
|
(delete-process proc))
|