Skip to content

Instantly share code, notes, and snippets.

@christianberg
Created May 7, 2010 11:47
Show Gist options
  • Save christianberg/393319 to your computer and use it in GitHub Desktop.
Save christianberg/393319 to your computer and use it in GitHub Desktop.
(ns compojureongae.core
(:use compojure.core
ring.adapter.jetty)
(:require [compojure.route :as route]))
(defroutes example
(GET "/" [] "<h1>Hello World Wide Web!</h1>")
(route/not-found "Page not found"))
(run-jetty example {:port 8080})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment