racket/collects/web-server/default-web-root/servlets/examples/count.ss
Jay McCarthy 00f2c671a3 Removing unit servlets
svn: r6101
2007-04-30 17:51:11 +00:00

18 lines
645 B
Scheme

(module count mzscheme
(require (lib "date.ss"))
(provide (all-defined))
(define interface-version 'v1)
(define timeout +inf.0)
(define count 0)
(define a-date (date->string (seconds->date (current-seconds)) 'time-too))
(define (start initial-request)
(define other-count 0)
(set! other-count (add1 other-count))
(set! count (add1 count))
`(html (head (title "Counter"))
(body ([bgcolor "white"])
(p "This servlet was called " ,(number->string count)
" times and " ,(number->string other-count)
" times since loaded on " ,a-date ".")))))