diff --git a/collects/scribble/manual.ss b/collects/scribble/manual.ss index bae3eae3..6259e0d7 100644 --- a/collects/scribble/manual.ss +++ b/collects/scribble/manual.ss @@ -440,7 +440,7 @@ (provide declare-exporting deftogether - defproc defproc* defstruct defthing defthing* defparam defboolparam + defproc defproc* defstruct defthing defthing* defparam defparam* defboolparam defform defform* defform/subs defform*/subs defform/none defidform specform specform/subs @@ -688,6 +688,10 @@ (syntax-rules () [(_ id arg contract desc ...) (defproc* ([(id) contract] [(id [arg contract]) void?]) desc ...)])) + (define-syntax defparam* + (syntax-rules () + [(_ id arg in-contract out-contract desc ...) + (defproc* ([(id) out-contract] [(id [arg in-contract]) void?]) desc ...)])) (define-syntax defboolparam (syntax-rules () [(_ id arg desc ...)