racket/collects/web-server/default-web-root/htdocs/Defaults/documentation/examples/hello.ss
2005-05-27 18:56:37 +00:00

10 lines
246 B
Scheme

(require (lib "unitsig.ss")
(lib "servlet-sig.ss" "web-server"))
(unit/sig () (import servlet^)
(define the-text "Hello, Web!")
`(html (head (title ,the-text))
(body ([bgcolor "white"])
(p ,the-text))))