Re: [pollen] Using expressions to define metas

2017-12-30 Thread Matthew Butterick
> On Dec 30, 2017, at 1:23 PM, Joel Dueck wrote: > > I would have expected define-meta to take the result of the expression rather > than quoting it. Is there a way to define a meta in terms of an expression > result? > > I don’t have a use for this right now, just

[pollen] Using expressions to define metas

2017-12-30 Thread Joel Dueck
If I run the following in DrRacket: #lang pollen ◊(define-meta title (string-titlecase "hello there")) The title is ◊select-from-metas['title metas]. Or ◊string-titlecase{hello there} The output is The title is '(string-titlecase "hello there"). Or Hello There. I would