Clojure
Clojure
code posted
by
The ClojureMan
created at 11 Nov 02:55
Edit
|
Back
1 2 3 4 5 6 7 8 9 10 |
(ns demo.web (:use [ring.adapter.jetty :only [run-jetty]])) (defn app [req] {:status 200 :headers {"Content-Type" "text/plain"} :body "Hello, world"}) (defn -main [port] (run-jetty app {:port (Integer. port)})) |
235 Bytes in 3 ms with coderay