racket/collects/web-server/default-web-root/servlets/examples/count.ss
2008-02-23 09:42:03 +00:00

18 lines
604 B
Scheme

#lang scheme/base
(require mzlib/date)
(provide (all-defined-out))
(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 "."))))