Re: [Chicken-users] iconv egg patch

2015-11-06 Thread Mario Domenech Goulart
Hello Hugo, On Wed, 19 Aug 2015 18:36:53 -0300 Hugo Arregui wrote: > The project is here[1], and the release file here[2]. I hope everything > is ok! > > [1] https://github.com/hugoArregui/iconv > [2] >

[Chicken-users] unary 'when' and 'unless'

2015-11-06 Thread Sven Hartrumpf
Hi. A hidden bug in my code was uncovered by loading it into another Scheme (guile), which enforced the limitation of 'when' and 'unless' (in R7RS) to at least one result part. Chicken accepts 'when' and 'unless' with only one argument: > csi CHICKEN (c) 2008-2015, The CHICKEN Team (c)

[Chicken-users] Bencode egg

2015-11-06 Thread Caolan McMahon
Hi all, I've just written a quick egg to do Bencode parsing / serialization. Bencode is the encoding used by BitTorrent, and is similar to tagged-netstrings. Bencode supports four data types: * Strings * Integers * Lists * Dictionaries Bencode uses ASCII characters as delimiters and digits,

Re: [Chicken-users] unary 'when' and 'unless'

2015-11-06 Thread John Cowan
Sven Hartrumpf scripsit: > A hidden bug in my code was uncovered by loading it into another > Scheme (guile), which enforced the limitation of 'when' and 'unless' > (in R7RS) to at least one result part. That's pretty much normal in the R5RS/R7RS regime. I had a similar problem when I wrote a

Re: [Chicken-users] one more egg - need advice how wrt. exports

2015-11-06 Thread Mario Domenech Goulart
Hello Jörg, On Tue, 03 Nov 2015 21:29:44 +0100 "Jörg F. Wittenberger" wrote: > Here is one more egg: > > http://ball.askemos.org/Aad0f198cd7fcfc96ea59bcbeec340556/srfi-101.release-info > > This simply slaps a module/egg around srfi-101 "Purely Functional >

Re: [Chicken-users] need help with chicken-install

2015-11-06 Thread Mario Domenech Goulart
On Tue, 03 Nov 2015 13:51:37 +0100 "Jörg F. Wittenberger" wrote: > Am 03.11.2015 um 13:12 schrieb Mario Domenech Goulart: >> >> On Tue, 03 Nov 2015 12:40:15 +0100 "Jörg F. Wittenberger" >> wrote: >> >>> Following the

Re: [Chicken-users] Bencode egg

2015-11-06 Thread Mario Domenech Goulart
Hello Caolan, On Fri, 6 Nov 2015 16:35:26 + Caolan McMahon wrote: > I've just written a quick egg to do Bencode parsing / serialization. > Bencode is the encoding used by BitTorrent, and is similar to > tagged-netstrings. > > Bencode supports four data types: > >