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

11 lines
251 B
Scheme

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