Arc Forumnew | comments | leaders | submitlogin
1 point by akkartik 5341 days ago | link | parent

Corresponding idiom for client:

  (connecting stream :at 1978
    (format stream "PID ~D~%" (getpid))
    (flush stream)
    (read-line stream))
https://github.com/akkartik/wart/blob/bcad0b2b1752765271987c...

I'm using :to for hostname and :at for port number. Does that seem intuitive?



1 point by evanrmurphy 5341 days ago | link

> I'm using :to for hostname and :at for port number. Does that seem intuitive?

Yes, to me it does.

-----