Re: miniPicoLisp Trasnients

2012-01-26 Thread Alexander Burger
Hi Doug, (de foo (x) x) ... (de baz (X) X) Hmm, this looks very much as if the call isIntern(tail(y), Transient) doesn't work for some reason. It seems that the two X symbols are not the same. Strange that it works for 'Internal' symbols. (setq V 456) at the top level (not in a

miniPicoLisp Trasnients

2012-01-25 Thread Doug Snead
Alex, I have a porting-related question for you. After more android testing I'm finding a problem with (transient) variables ... (I think). When I try a definition like this, (de foo (x) x) no problem, (foo 123) returns 123 as expected. But when I try it this way: (de baz (X) X)