python on guile

2014-05-30 Thread Stefan Israelsson Tampe
I would like to hijack the python2/3 community over to guile. A first step is a parser, it is ontop of guile-log so you might disslike it, but that can be changed later. I do need to develop the guile-log parser framework further so it is logical to use it because of that. This means that currently

Re: REPL reader of multi-language

2014-05-30 Thread Ludovic Courtès
Nala Ginrut skribis: > So here's my problem, there's only one reader slot defined in each > language type ,say, in (system base language). I have to implement just > one reader to fit them all: > 1. If I provide the interactive reader in Guile, the reader becomes > inefficient. Because each time

Re: REPL reader of multi-language

2014-05-30 Thread Mike Gerwitz
On Fri, May 30, 2014 at 04:25:40PM +0800, Nala Ginrut wrote: > It's not a problem for Ecmascript, because its statement has to be ended > with semicolon. So it's easier to detect the minimum compiling unit in > REPL. ECMAScript uses semicolon insertion---semicolons are optional, but this can lead

Re: Welcome Mark as new co-maintainer

2014-05-30 Thread Alex Sassmannshausen
What a lovely email summarizing, at the very least, exactly how I feel about Guile and its community. Belatedly, congrats on the appointment! Best wishes, Alex Mark H Weaver writes: > l...@gnu.org (Ludovic Courtès) writes: >> I’m happy to announce that Mark H. Weaver has now been officially >>

REPL reader of multi-language

2014-05-30 Thread Nala Ginrut
hi folks! When I'm hacking guile-lua on Guile, I realize that some languages may need two different reader for REPL(interactive environment) and compiler. For an instance, the reader in Lua REPL has little different from its compiler reader: --cut---