rum
rum copied to clipboard
HTTP server on stdlib
Example of how I think - we are willing to discuss the best way:
(package "main"
(import http)
(def home-handle(w, r)
(fprintf w "home starting server!"))
(http.handle-func "/" home-handle)
(http.listen-serve ":8080" nil))