Guest User

Untitled

a guest
Jun 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. (defvar http (require 'http))
  2.  
  3. (chain (http.create-server (lambda (request response)
  4. (response.write-head 200 (hash "Content-type" "text/plain"))
  5. (response.end "hello world")))
  6. (listen 8124 "127.0.0.1"))
Add Comment
Please, Sign In to add comment