Skip to content

Instantly share code, notes, and snippets.

@elben
Created August 27, 2010 03:41
Show Gist options
  • Save elben/552742 to your computer and use it in GitHub Desktop.
Save elben/552742 to your computer and use it in GitHub Desktop.
(ns simpleweb
(:gen-class)
(:use compojure.core
ring.adapter.jetty)
(:require [compojure.route :as route]))
(defroutes greeter
(GET "/" [] "<h1>test</h1>")
(route/not-found "not found"))
(def -main [& args]
(run-jetty greeter {:port 8080}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment