Re: French localization

2017-03-05 Thread Alexander Burger
Hi all, thanks to Raman and Eric the french localization is now included in the newest release :) It can also be tested on the demo app.7fach.de ♪♫ Alex -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

Namespace Chaining

2017-03-05 Thread Alexander Burger
Hi all, with the newest release (17.3.4) in software-lab.de/picoLisp.tgz, namespace handling in Pil64 has changed a little. Until now, there was always always a single active namespace, which was created with the 'symbols' function, and contained a full copy of the argument namespaces. This made

Re: TC -> Loop Transformation?

2017-03-05 Thread Alexander Burger
Hi Christopher, thanks for sharing these ideas! However I'm a bit clueless about what you want to achieve. > Hi, I while ago I asked how I might somehow represent a loop as a a tail > call recursion, so as to give me the pattern I like without the call > penalties. Isn't it a lot easier to writ

Gosper-curve from 'co routine

2017-03-05 Thread Lindsay John Lawrence
Using Picolisp 'co routine to... Generate Gosper-curve states from L-System rules : (GosperGen T) # Reset -> T : (do 64 (prin (GosperGen))) A-B--B+A++AA+B--+A-BB--B-A++A+B--+A-BB--B-A++A+B+A-B--B+A++AA+B--> "-" : (GosperGen) -> "+" : (GosperGen) -> "+" : (GosperGen) -> "A" .. A depth of 12 gene