[plt-scheme] how to quote identifier in macro

From: Noel Welsh (noelwelsh at gmail.com)
Date: Thu Dec 11 14:37:07 EST 2008

On Thu, Dec 11, 2008 at 2:47 AM, Andre Mayers
<andre.mayers at usherbrooke.ca> wrote:
> My first problem is how to quote it.

Just write

(quote some-expr)

> I may have also a problem to get rid of the eval.

Just write out the program code you want in that place:

(lambda (self ps ...) ...)

Also, underscores are not really Scheme style.  Use hyphens instead.
I.e. foo-bar not foo_bar

HTH,
Noel


Posted on the users mailing list.