(ns hello-world (:use compojure)) (defroutes greeter (GET "/" (html [:h1 "Clojure"]))) (run-server {:port 8080} "/*" (servlet greeter))