18 lines
356 B
Scheme
18 lines
356 B
Scheme
;; Non-incremental servlet with no arguments on the URL, in text/html, no URL
|
|
;; path.
|
|
(module test1 mzscheme
|
|
(require web-server/servlet
|
|
)
|
|
|
|
(provide start timeout interface-version)
|
|
|
|
(define timeout 1)
|
|
(define interface-version 'v1)
|
|
|
|
(define (start req)
|
|
(send/finish
|
|
'(html
|
|
(head
|
|
(title "Title")))))
|
|
)
|