On Tue, May 24, 2016 at 9:14 PM, Hendrik Boom <hend...@topoi.pooq.com> wrote
> ```
> #lang scribble/base
> (require scribble/core)

The "require" is missing a @---change it to @(require scribble/core)
and your unbound identifier error should go away.

>
> Example of color:
>
> @(define (colorize #:color c . content)
>   (elem #:style (style #f (color-property c)

Once the require is taken care of, you'll probably also get a contract
violation here due to style's second argument. The docs say it should
be a list. Hope that helps.

-Brian

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to