asandroq (owner)

Revisions

gist: 140277 Download_button fork
public
Public Clone URL: git://gist.github.com/140277.git
Scheme
1
2
3
4
5
6
7
8
;; hypothetical Scheme web DSL
;; note that the macro binds the URI variables
;; to local variables
(GET "/api/show/:user/:repo"
  (if (user-has-repo? user repo)
      (render-repo-xml user repo)
      ...))