newLISP Fan Club

Forum => newLISP in the real world => Topic started by: lyl on August 27, 2020, 10:54:17 PM

Title: Setup functions by setq
Post by: lyl on August 27, 2020, 10:54:17 PM
I'd like to make a series of functions whose names come from a list, as shown by the following codes:
(setq a '(a1 a2))
(dolist (x a)
  (let (z $idx)
    (setq x (lambda(y) z))
    ))

what I want is to get two functions

a1: (lambda (y) 0)

a2: (lambda (y) 1)

But I fail.

What's wrong with my code, and how to solve it?
Title: Re: Setup functions by setq
Post by: newBert on August 28, 2020, 03:21:46 AM
Quote from: lyl post_id=24920 time=1598594057 user_id=1262
(setq a '(a1 a2))
(dolist (x a)
  (let (z $idx)
    (setq x (lambda(y) z))
    ))

What's wrong with my code, and how to solve it?


Maybe with :
(dolist (x a)
  (let (z $idx)
    (set (sym x) (expand (lambda (y) z) 'z))))