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