I am trying to use defprocfunction definitions to format ( not to document a library), The code below formats correctly, but displays an ugly warning to the console when Scribble starts:
@require[(for-label racket/contract)]
@defproc[(f [x integer?]) integer?]{
The best @racket[f].
}
Performing scribble --html example.scrblprint:
example.scrbl:4:10: WARNING: no declared exporting libraries for definition
in: f
Can I use defprocto format and delete the error message?
source
share