racket/collects/scribblings/guide/contracts-utils.ss
2008-01-03 22:23:45 +00:00

12 lines
243 B
Scheme

#lang scheme/base
(require scribble/basic)
(provide question)
(define (question #:tag [tag #f] . rest)
(keyword-apply section
'(#:tag)
(list (and tag (format "contracts-~a" tag)))
rest))