Is it possible to generate (quote (quote var)) or ''var dynamically?
问题 In question Using AND with the apply function in Scheme , I proposed an solution to apply "and" onto a list of atoms (i.e. s-exp which is neither null, nor pair.) in PLT-Scheme 372. Welcome to DrScheme, version 372 [3m]. Language: Textual (MzScheme, includes R5RS). > (eval (cons 'and (list ''#f ''#f ''#t))) #f > (eval (cons 'and (list ''a ''b ''c))) c But right after that I realized that: it's not easy to generate (quote (quote var)) or ''var dynamically. To be specific, the following code