newLISP Fan Club

Forum => newLISP in the real world => Topic started by: derek on June 22, 2016, 07:01:37 AM

Title: Expand..
Post by: derek on June 22, 2016, 07:01:37 AM
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.
Title: Re: Expand..
Post by: newBert on June 22, 2016, 08:32:02 AM
Quote from: "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.


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)) ...
Title: Re: Expand..
Post by: derek on June 23, 2016, 01:52:38 AM
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..



:)
Title: Re: Expand..
Post by: newBert on June 24, 2016, 09:24:30 AM
Quote from: "derek" 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) :)