Re: [Chicken-users] Wiki design

2014-09-20 Thread Arthur Maciel
Hello, folks! Any news about the wiki design? Best wishes, Arthur 2014-08-30 9:35 GMT-03:00 Yaroslav Tsarko eriktsa...@googlemail.com: Matt, On 30.08.2014 4:08, Arthur Maciel wrote: Matt and Yaroslav, thanks for your opinions! (more below)Yaroslav, I also don't like the current

[Chicken-users] Parsing Simple Markup

2014-09-20 Thread Yves Cloutier
Hello, I am a new user to Scheme in general and to Chicken in particular, nice to meet you all. I came to scheme looking for an alternative to Perl for doing a personal project which involves parsing an input file, identifying html-like commands and converting those to Groff code. I was doing

Re: [Chicken-users] Parsing Simple Markup

2014-09-20 Thread Richard
On Sat, 20 Sep 2014 11:19:08 -0400 Yves Cloutier yves.clout...@gmail.com wrote: Hello, I am a new user to Scheme in general and to Chicken in particular, nice to meet you all. I came to scheme looking for an alternative to Perl for doing a personal project which involves parsing an

[Chicken-users] Macro returning multiple nodes?

2014-09-20 Thread Mathieu
Hi everyone, Writing macros with the er-macro-transformer syntax has been a charm so far.But I am now trying to accomplish something that might not make sense.I would like to use the following syntax in my code: ;; make the get-session-response (make-get-session-response

Re: [Chicken-users] Macro returning multiple nodes?

2014-09-20 Thread Evan Hanson
Hi Mathieu, The usual way to do this is to splice the multiple forms you want to return into a `begin`: `(begin ,@(map (lambda (record-value) `(,(symbol-append record-symbol '- record-value) ,record-symbol)) record-values)) Cheers, Evan

Re: [Chicken-users] Parsing Simple Markup

2014-09-20 Thread Oleg Kolosov
On 09/20/14 19:19, Yves Cloutier wrote: Hello, I am a new user to Scheme in general and to Chicken in particular, nice to meet you all. Welcome! Scheme is a totally different paradigm that I'm used to, so while I wait for my books to arrive I will need some hand-holding...hope that's