Skip to content

Instantly share code, notes, and snippets.

@weavejester
Created September 18, 2010 18:21

Revisions

  1. weavejester created this gist Sep 18, 2010.
    13 changes: 13 additions & 0 deletions gistfile1.clj
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,13 @@
    ;; 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})