Skip to content

Instantly share code, notes, and snippets.

@iwillig
Created May 14, 2010 15:42
Show Gist options
  • Save iwillig/401307 to your computer and use it in GitHub Desktop.
Save iwillig/401307 to your computer and use it in GitHub Desktop.
(ns hello-world
(:use compojure))
(defroutes greeter
(GET "/"
(html [:h1 "Hello World"])))
(run-server {:port 8080}
"/*" (servlet greeter))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment