Skip to content

Instantly share code, notes, and snippets.

@swannodette
Created July 14, 2010 04:37
Show Gist options
  • Save swannodette/475031 to your computer and use it in GitHub Desktop.
Save swannodette/475031 to your computer and use it in GitHub Desktop.
(ns third-post.server
(:use aleph))
(defn pong [request]
(respond! request
{:status 200
:headers {"Content-Type" "text/plain"}
:body "pong"}))
(run-aleph pong {:port 5123})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment