update of picolisp download page

2021-05-27 Thread O.Hamann
Hi Alex, on the picolisp download page a few updates would be nice to reflect the actual situation: - url for '#picolisp' should point to 'irc://irc.libera.chat/picolisp' I guess - word 'Libera.chat' instead of 'FreeNode.net' - the url for 'IRC-Logger' should point to 'https://libera.irclog.white

Re: update of picolisp download page

2021-05-27 Thread Alexander Burger
Hi Olaf, > - url for '#picolisp' should point to 'irc://irc.libera.chat/picolisp' I > guess > - word 'Libera.chat' instead of 'FreeNode.net' > - the url for 'IRC-Logger' should point to > 'https://libera.irclog.whitequark.org/picolisp' Yes, but I did that already. Or did something go wrong? ☺/ A

Re: why is (prog . '((+ 1 2 3) (+ 4 5 6))) not equivalent to (apply 'prog '((+ 1 2 3) (+ 4 5 6)))

2021-05-27 Thread polifemo
I see! thanks! On Thu, May 27, 2021 at 12:39 AM Alexander Burger wrote: > On Wed, May 26, 2021 at 11:49:57PM -0500, polifemo wrote: > > (prog . '((+ 1 2 3) (+ 4 5 6))) returns the expected value, 15, while > > (apply 'prog '((+ 1 2 3) (+ 4 5 6))) fails with "Address boundary error". > > 'apply'