[racket] syntax-temporaries srfi-53

From: Asumu Takikawa (asumu at ccs.neu.edu)
Date: Thu Sep 26 07:16:16 EDT 2013

On 2013-09-26 12:54:45 +0900, Niitsuma Hirotaka wrote:
> How to use unique name variable within srfi-53 ?

I'm not sure why that PLaneT package has that behavior, but if you just
want to generate new identifiers, you can use the built-in
`generate-temporaries` function:

  Welcome to Racket v5.90.0.9.
  -> (generate-temporaries '(x y z))
  '(#<syntax x4> #<syntax y5> #<syntax z6>)

Cheers,
Asumu

Posted on the users mailing list.