concurrent-web-hello.scm 159 B

12345678
  1. (use-modules (fibers web server))
  2. (define (handler request body)
  3. (values '((content-type . (text/plain)))
  4. "Hello, World!"))
  5. (run-server handler)