Skip to content

Instantly share code, notes, and snippets.

@iamjarvo
Forked from weavejester/gist:585921
Created December 24, 2020 07:20
Show Gist options
  • Save iamjarvo/30b15cb0dfcace6d5a8fd3619784c878 to your computer and use it in GitHub Desktop.
Save iamjarvo/30b15cb0dfcace6d5a8fd3619784c878 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})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment