newLISP Fan Club

Forum => newLISP in the real world => Topic started by: vetelko on February 11, 2017, 07:22:22 AM

Title: set multiple symbols from list values at once
Post by: vetelko on February 11, 2017, 07:22:22 AM
Hi guys,



is it possible to achieve something like this in newLISP?
(assign name city age '("john", "new york", 22))
Title: Re: set multiple symbols from list values at once
Post by: jopython on February 11, 2017, 03:07:51 PM
You can't. unless you want to use title case.



: (bind (unify '(Name City Age) '("john" "new york" 22)))
22
: Name
john
: City
new york
: Age
22
Title: Re: set multiple symbols from list values at once
Post by: Lutz on February 11, 2017, 03:34:10 PM
use map and set

> (map set '(name city age) '("john" "new york" 22))
("john" "new york" 22)

> name
"john"
> city
"new york"
> age
22
>