Guest User

Untitled

a guest
Jun 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. (def (recv)
  2. (def data "")
  3. (while (string-find? data "\n")
  4. (def chunk (read-char (socket-intput sock)))
  5. (if (null? chunk)
  6. (error 'lol "Conection Error")
  7. (string-append! data chunk))))
Add Comment
Please, Sign In to add comment