Re: org mode picolisp?

2015-12-28 Thread O.Hamann
Hi Lawrence, I had to add the org header argument :results output to show the printed output of the org block So, this is - all in one src block - as it worked for me: #+BEGIN_SRC picolisp :results output (de hello-one-arg2 (x) (prinl "Hello World again" x)) (hello-one-arg2 "me") #+END_S

picolisp repo

2015-12-28 Thread Mike Pechkin
hi, I've changed my opinion, after picolisp gone from code.google.com I gonna manually support synchronization in my repo between picolisp releases. Now in repo i have 15.11 (28dec15) release, i will sync again after every stable release or more often. https://bitbucket.org/mihailp/picolisp/src/

Re: picolisp repo

2015-12-28 Thread Joh-Tob Schäg
Nice, thats helpfull. Thank you. Am 28.12.2015 15:31 schrieb "Mike Pechkin" : > hi, > > I've changed my opinion, after picolisp gone from code.google.com > > I gonna manually support synchronization in my repo between picolisp > releases. > Now in repo i have 15.11 (28dec15) release, i will sync a

Re: org mode picolisp?

2015-12-28 Thread Rick Hanson
> For splitting definition and call one can use org header argument > :session Thanks, Olaf. This will help me too, in the future (when I use pil in Org), as I've only used elisp in Org Babel blocks (which do not need a session). -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscri

Re: org mode picolisp?

2015-12-28 Thread Lawrence Bottorff
Yes, got it to work here too. Interesting that picolisp has sessions. That's the org mode version of namespaces, if I'm not mistaken. On Mon, Dec 28, 2015 at 6:36 PM, Rick Hanson wrote: > > For splitting definition and call one can use org header argument > > :session > > Thanks, Olaf. This wi

Re: wr function in Ersatz

2015-12-28 Thread Christophe Gragnic
On Sun, Dec 27, 2015 at 10:18 AM, Alexander Burger wrote: > Hi Christophe, Hi Alex, >> Is there a reason why 'wr is not included in Ersatz? > > It is simply because the whole family of binary I/O functions is not > supported. > > The plain 'wr' would be quite trivial to implement, but then there

A symbol that is bound only once

2015-12-28 Thread Christophe Gragnic
Hi all, Sorry for this cryptic subject. I couldn't find a better one. So here is a snippet: http://pastebin.com/ydJj2DUU (also as an attached file and pasted at the end of this email). It's from this video: https://www.youtube.com/watch?v=FITJMJjASUs that I'm trying to translate to PicoLisp. Cou

Re: wr function in Ersatz

2015-12-28 Thread Alexander Burger
Hi Christophe, > >> Is there a reason why 'wr is not included in Ersatz? > > > > It is simply because the whole family of binary I/O functions is not > > supported. > > > > The plain 'wr' would be quite trivial to implement, but then there > > should be also 'rd' and 'pr' for completeness. > > Yo

Re: A symbol that is bound only once

2015-12-28 Thread Alexander Burger
On Mon, Dec 28, 2015 at 10:46:34PM +0100, Christophe Gragnic wrote: > Hi all, > Sorry for this cryptic subject. I couldn't find a better one. > > So here is a snippet: > http://pastebin.com/ydJj2DUU BTW, another issue: It would be wise to stick with the PicoLisp coding conventions, to make thing

Re: A symbol that is bound only once

2015-12-28 Thread Alexander Burger
Hi Christophe, > So here is a snippet: > http://pastebin.com/ydJj2DUU > ... > Could someone explain me why the symbol 'code is > bound to 'X in the first pass, but to NIL thereafter? I don't want to dig into this one. But in general, forget about all those 'println's in the code. There are power