
Relaxing the contract on date->string to accord with previous documentation. Changing web-server example to use more restrictive contract Please include in 5.0
19 lines
599 B
Racket
19 lines
599 B
Racket
#lang racket/base
|
|
(require racket/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)) #t))
|
|
(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 "."))))
|