Skip to content

Instantly share code, notes, and snippets.

@weavejester
Created September 18, 2010 18:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save weavejester/585921 to your computer and use it in GitHub Desktop.
Save weavejester/585921 to your computer and use it in GitHub Desktop.
;; 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-2
(:use ring.util.response
ring.adapter.jetty))
(defn handler [request]
(-> (response "Hello World")
(content-type "text/plain")))
(run-jetty handler {:port 8080})
@salmazov
Copy link

How to execute this file?

@wangboo
Copy link

wangboo commented Dec 24, 2015

execute in REPL

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment