Created
September 18, 2010 18:21
-
-
Save weavejester/585915 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; When executed, this file will run a basic web server | |
;; on http://localhost:8080 that will display the text | |
;; 'Hello World'. | |
(ns ring.example.hello-world | |
(:use ring.adapter.jetty)) | |
(defn handler [request] | |
{:status 200 | |
:headers {"Content-Type" "text/plain"} | |
:body "Hello World"}) | |
(run-jetty handler {:port 8080}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment