Arc Forumnew | comments | leaders | submitlogin
1 point by typhon 4590 days ago | link | parent

I needed to add this to ac.scm :

  (xdef tcp-connect
        (lambda (host port . rest)
          (call-with-values
            (lambda () (apply tcp-connect host port rest))
            (lambda (x y)
              (cons x (cons y 'nil))))))
This allowed me to write a basic HTTP client.