racket/collects/web-server/default-web-root/servlets/examples/dir.ss
Jay McCarthy bb1f188642 pr8515
svn: r5561
2007-02-06 14:46:06 +00:00

14 lines
347 B
Scheme

(require (lib "unit.ss")
(lib "servlet-sig.ss" "web-server")
(lib "date.ss"))
(unit (import servlet^)
(export)
(send/back
`(html (head (title "Current Directory Page"))
(body
(h1 "Current Directory Page")
(p "The current directory is: " (em ,(path->string (current-directory))))))))