Skip to content

Instantly share code, notes, and snippets.

@slagyr
Created April 15, 2010 17:35
Show Gist options
  • Save slagyr/367391 to your computer and use it in GitHub Desktop.
Save slagyr/367391 to your computer and use it in GitHub Desktop.
(ns lein_issue.core
(:use compojure.core
ring.adapter.jetty))
(defroutes silly-routes
(ANY "*" []
"<h1>Howdy</h1>"))
(run-jetty silly-routes {:port 8080})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment