Guile news for the GNU Status Report

2011-01-08 Thread Ludovic Courtès
Hello,

Karl Berry asked maintainers to submit a few paragraphs for the
forthcoming GNU Status Report, a news bulletin to appear within the next
couple of weeks with updates on what individual GNU packages are up to.

Here’s a proposal.  The goal is to send a final version by Monday, 10th
(sorry for not working on it earlier), and comments/amendments are
welcome!  It's a bit long, but heck, there are so many things to say!

--8<---cut here---start->8--- GNU
Guile is an implementation of the Scheme programming language that can
be embedded in applications to allow users to extend them in Scheme.
Extensibility empowers users to leverage software freedom by making it
easier to start making changes.  Just as Emacs Lisp allowed
unanticipated applications to be written within the Emacs environment,
Guile should do the same for other GNU applications.  It should spread
the Emacs nature to the rest of GNU.

Guile has undergone major changes over the last couple of years,
resulting in 15 pre-releases---labeled 1.9.x.  This will lead to the 2.0
stable series, scheduled for release in the first quarter of 2011.  The
1.8 stable series was released in 2006.  It offered many improvements
such as support for exact rational numbers, multi-threading, and a
better C programming interface.

Guile 2.0 is a breakthrough in Guile's history.  First and foremost, it
is based on a compiler and a virtual machine.  The compiler compiles
Scheme code to bytecode, applying well-known optimizations.  As a
result, Scheme code runs noticeably faster with Guile 2.0.  Compilation
can occur transparently: when the compiled form of a module is not found
in cache, it is automatically compiled before being run.

In addition, Guile 2.0 comes with a wealth of exciting new features.
Hygienic macros are supported natively and well integrated with the
module system; they are what makes Scheme itself extensible.  It
supports Unicode, as well as most of R6RS, the latest revision of the
Scheme programming language.

A dynamic foreign function interface (FFI) is provided, allowing
bindings to C libraries to be written entirely in Scheme.  The new
version also provides composable continuations (aka. ``prompts''), a
novel control flow mechanism.  New modules include web tools for HTTP
and URIs, XML/SXML, pattern matching, LALR parsing,
internationalization, purely functional hash lists, and code coverage,
to name a few.

While Guile 2.0 remains primarily an implementation of Scheme, its
compiler comes with a front-end for ECMAScript---one more choice for
users seeking to extend their applications.  An Emacs Lisp front-end is
also available.  It is the result of work towards the unification of
Guile and Emacs, flagships of extensibility in GNU.

2011 promises to be another exciting year for Guile.  We believe Guile
2.0 is a great tool to push extensibility further and enhance software
freedom!
--8<---cut here---end--->8---

Thanks,
Ludo'.


pgpMPsffjlUSE.pgp
Description: PGP signature


Re: Guile news for the GNU Status Report

2011-01-15 Thread Neil Jerram
l...@gnu.org (Ludovic Courtès) writes:

> Hello,

Hi Ludo,

> Karl Berry asked maintainers to submit a few paragraphs for the
> forthcoming GNU Status Report, a news bulletin to appear within the next
> couple of weeks with updates on what individual GNU packages are up to.
>
> Here’s a proposal.  The goal is to send a final version by Monday, 10th
> (sorry for not working on it earlier), and comments/amendments are
> welcome!  It's a bit long, but heck, there are so many things to say!

It looks good to me.  I had just one point of (minor) concern...

> Guile 2.0 is a breakthrough in Guile's history.  First and foremost, it
> is based on a compiler and a virtual machine.  The compiler compiles
> Scheme code to bytecode, applying well-known optimizations.  As a
> result, Scheme code runs noticeably faster with Guile 2.0.  Compilation
> can occur transparently: when the compiled form of a module is not found
> in cache, it is automatically compiled before being run.

People might assume that this means Guile is now less supporting of
interactive programming than in previous releases.  I think it would be
worth adding a sentence to clarify that this is not the case.  Perhaps
"Note that Guile still supports interactive programming, i.e. modifying
code in running programs, just as extensively as it has in previous
releases."
 
> 2011 promises to be another exciting year for Guile.  We believe Guile
> 2.0 is a great tool to push extensibility further and enhance software
> freedom!

Indeed!

 Neil



Re: Guile news for the GNU Status Report

2011-01-17 Thread Ludovic Courtès
Hi Neil,

Thanks for your feedback.

Neil Jerram  writes:

>> Guile 2.0 is a breakthrough in Guile's history.  First and foremost, it
>> is based on a compiler and a virtual machine.  The compiler compiles
>> Scheme code to bytecode, applying well-known optimizations.  As a
>> result, Scheme code runs noticeably faster with Guile 2.0.  Compilation
>> can occur transparently: when the compiled form of a module is not found
>> in cache, it is automatically compiled before being run.
>
> People might assume that this means Guile is now less supporting of
> interactive programming than in previous releases.  I think it would be
> worth adding a sentence to clarify that this is not the case.  Perhaps
> "Note that Guile still supports interactive programming, i.e. modifying
> code in running programs, just as extensively as it has in previous
> releases."

In the meantime I had changed this paragraph to mention the REPL and
debugger:

  Guile 2.0 is a breakthrough in Guile's history.  First and foremost,
  it is based on a compiler and a virtual machine, and comes with a
  powerful read-eval-print loop (REPL) and debugger.  The compiler
  compiles Scheme code to bytecode, blah blah blah

How does this address your concern?

Normally the status report should have been published by now, but it
hasn’t, so I may/might still be able to change it.

Thanks,
Ludo’.



Re: Guile news for the GNU Status Report

2011-02-01 Thread Neil Jerram
l...@gnu.org (Ludovic Courtès) writes:

>>> Guile 2.0 is a breakthrough in Guile's history.  First and foremost, it
>>> is based on a compiler and a virtual machine.  The compiler compiles
>>> Scheme code to bytecode, applying well-known optimizations.  As a
>>> result, Scheme code runs noticeably faster with Guile 2.0.  Compilation
>>> can occur transparently: when the compiled form of a module is not found
>>> in cache, it is automatically compiled before being run.
>>
>> People might assume that this means Guile is now less supporting of
>> interactive programming than in previous releases.  I think it would be
>> worth adding a sentence to clarify that this is not the case.  Perhaps
>> "Note that Guile still supports interactive programming, i.e. modifying
>> code in running programs, just as extensively as it has in previous
>> releases."
>
> In the meantime I had changed this paragraph to mention the REPL and
> debugger:
>
>   Guile 2.0 is a breakthrough in Guile's history.  First and foremost,
>   it is based on a compiler and a virtual machine, and comes with a
>   powerful read-eval-print loop (REPL) and debugger.  The compiler
>   compiles Scheme code to bytecode, blah blah blah
>
> How does this address your concern?

Sorry for the delay...  Yes, that sounds fine now.  The mention of the
REPL should tend allay any static-ness concerns.

Regards,
Neil



Re: Guile news for the GNU Status Report

2011-02-02 Thread Ludovic Courtès
Hello,

Neil Jerram  writes:

> l...@gnu.org (Ludovic Courtès) writes:
>
 Guile 2.0 is a breakthrough in Guile's history.  First and foremost, it
 is based on a compiler and a virtual machine.  The compiler compiles
 Scheme code to bytecode, applying well-known optimizations.  As a
 result, Scheme code runs noticeably faster with Guile 2.0.  Compilation
 can occur transparently: when the compiled form of a module is not found
 in cache, it is automatically compiled before being run.
>>>
>>> People might assume that this means Guile is now less supporting of
>>> interactive programming than in previous releases.  I think it would be
>>> worth adding a sentence to clarify that this is not the case.  Perhaps
>>> "Note that Guile still supports interactive programming, i.e. modifying
>>> code in running programs, just as extensively as it has in previous
>>> releases."
>>
>> In the meantime I had changed this paragraph to mention the REPL and
>> debugger:
>>
>>   Guile 2.0 is a breakthrough in Guile's history.  First and foremost,
>>   it is based on a compiler and a virtual machine, and comes with a
>>   powerful read-eval-print loop (REPL) and debugger.  The compiler
>>   compiles Scheme code to bytecode, blah blah blah
>>
>> How does this address your concern?
>
> Sorry for the delay...  Yes, that sounds fine now.  The mention of the
> REPL should tend allay any static-ness concerns.

Great.  BTW, this was eventually published here:
.

I’ll add a link to it in news.html.

Thanks,
Ludo’.