Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 8th, 2011  |  syntax: None  |  size: 0.28 KB  |  hits: 50  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. (ns getting-started.core
  2.   (:require [appengine-magic.core :as ae]))
  3.  
  4.  
  5. (defn getting-started-app-handler [request]
  6.   {:status 200
  7.    :headers {"Content-Type" "text/plain"}
  8.    :body "Hello, world!"})
  9.  
  10.  
  11. (ae/def-appengine-app getting-started-app #'getting-started-app-handler)