Expand..

Q&A's, tips, howto's
Locked
derek
Posts: 2
Joined: Wed Jun 22, 2016 1:52 pm
Location: Limoges, France

Expand..

Post by derek »

Maybe I'm doing something wrong but I can't get expand to work..

(set 'x 2 'a '(d e)) ; from the examples

(expand '(a x(b c x) 'x 'a))

For me this just returns the first list I typed. But I'm just using this on the console, not in any macros.. is this possible??

Many thanks.

newBert
Posts: 156
Joined: Fri Oct 28, 2005 5:33 pm
Location: France

Re: Expand..

Post by newBert »

derek wrote:Maybe I'm doing something wrong but I can't get expand to work..

(set 'x 2 'a '(d e)) ; from the examples

(expand '(a x(b c x) 'x 'a))

For me this just returns the first list I typed. But I'm just using this on the console, not in any macros.. is this possible??

Many thanks.
In the example, we have : (expand '(a x (b c x)) 'x 'a) which returns -> ((d e) 2 (b c 2)).
But you wrote (expand '(a x(b c x) 'x 'a)) ...
BertrandnewLISP v.10.7.6 64-bit on Linux (Linux Mint 20.1)

derek
Posts: 2
Joined: Wed Jun 22, 2016 1:52 pm
Location: Limoges, France

Re: Expand..

Post by derek »

Many thanks - I figured it out shortly after posting. I used the neglook examples and it worked, so I guessed it was my crappy typing..

Newlisp is great - many thanks for this language. I never managed to get quite good enough at lisp and scheme, but with newlisp I should be vaguely useful for something..

:)

newBert
Posts: 156
Joined: Fri Oct 28, 2005 5:33 pm
Location: France

Re: Expand..

Post by newBert »

derek wrote: I never managed to get quite good enough at lisp and scheme, but with newlisp I should be vaguely useful for something..

:)
I myself tried some Lisp(s) and many Scheme(s), and other scripting languages too, like Python, Perl or Ruby, but I'm definetly not able to manage with them, and at the end I come back again and again to NewLISP, (and Lua, equally placed with NewLISP as my favorite languages) :)
BertrandnewLISP v.10.7.6 64-bit on Linux (Linux Mint 20.1)

Locked