Subscribe

2017-03-04 Thread Никола Митков Тодоров

Subscribe

2017-03-04 Thread Mateusz Poszwa
Hello Mateusz Poszwa :-) You are now subscribed Thanks. -- Mateusz Poszwa -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

TC -> Loop Transformation?

2017-03-04 Thread Christopher Howard
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. Since nothing was forthcoming, I took a stab at it myself. Probably my noobish attempt will be ugly to you veterans, but I was hoping if I posted

Re: JavaCode with static class methods

2017-03-04 Thread Thorsten Jolitz
Alexander Burger writes: Hi Joe, Hi Alex, >> I'm experimenting a bit with the 'java' function, and the StringBuilder >> ... >> (java "java.lang.Math" 'sqrt 4) > > It needs a different call: >: (java "java.lang.Math" 'sqrt (-6 . 64.0)) thanks for the hints, so

Re: L-system rules with PicoLisp

2017-03-04 Thread Lindsay John Lawrence
Thanks Alex, I appreciate the suggestions. As ever, I learn something from them ;) /Lindsay On Fri, Mar 3, 2017 at 10:10 PM, Alexander Burger wrote: > Hi Lindsay, > > > The code below is the recursive Gosper implementation I came up with that > > uses very little stack.