* [ANN] Guile Hoot 0.4.0 released!
@ 2024-04-09 14:12 Thompson, David
2024-04-09 14:59 ` Luis Felipe
2024-04-09 22:37 ` Nala Ginrut
0 siblings, 2 replies; 4+ messages in thread
From: Thompson, David @ 2024-04-09 14:12 UTC (permalink / raw)
To: Guile User
Hey Guilers!
On behalf of the Spritely Institute, I'm happy to announce that Guile
Hoot v0.4.0 has been released! Hoot is a Scheme to WebAssembly
compiler backend for Guile, which means you can now run Scheme in the
browser for real, tail calls and all.
The highlights of this release are:
* Hoot now supports user-defined modules. Users no longer have to
stuff their entire program into one file!
* The standard library is now available as a collection of importable
modules. Hoot provides the R7RS (scheme ...) namespace, as well as
its own (hoot ...) namespace.
* An example project was added to the source tree in Git to serve as
an easy starting point for new Hoot projects. This example project
also ships with our official release tarballs. See the template's
README [0] for more information.
* More of R7RS-small has been implemented and Hoot can now run 54 out
of 57 Scheme benchmarks! [1] (Note that this data is currently just
from my machine. The official benchmark server will need to be
capable of running NodeJS 22+, or another V8 distro, before Hoot
results could be published there.)
Read the full release notes here:
https://spritely.institute/news/guile-hoot-v040-released.html
If you use Guix then it's easy to try out Hoot:
guix pull
guix shell guile-next guile-hoot
Happy hooting!
- Dave
[0] https://gitlab.com/spritely/guile-hoot/-/blob/main/examples/project-template/README.md?ref_type=heads
[1] https://ecraven.github.io/r7rs-benchmarks
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ANN] Guile Hoot 0.4.0 released!
2024-04-09 14:12 [ANN] Guile Hoot 0.4.0 released! Thompson, David
@ 2024-04-09 14:59 ` Luis Felipe
2024-04-09 22:37 ` Nala Ginrut
1 sibling, 0 replies; 4+ messages in thread
From: Luis Felipe @ 2024-04-09 14:59 UTC (permalink / raw)
To: Thompson, David, Guile User
[-- Attachment #1.1.1: Type: text/plain, Size: 1617 bytes --]
Hi David,
El 9/04/24 a las 14:12, Thompson, David escribió:
> Hey Guilers!
>
> On behalf of the Spritely Institute, I'm happy to announce that Guile
> Hoot v0.4.0 has been released! Hoot is a Scheme to WebAssembly
> compiler backend for Guile, which means you can now run Scheme in the
> browser for real, tail calls and all.
>
> The highlights of this release are:
>
> * Hoot now supports user-defined modules. Users no longer have to
> stuff their entire program into one file!
>
> * The standard library is now available as a collection of importable
> modules. Hoot provides the R7RS (scheme ...) namespace, as well as
> its own (hoot ...) namespace.
>
> * An example project was added to the source tree in Git to serve as
> an easy starting point for new Hoot projects. This example project
> also ships with our official release tarballs. See the template's
> README [0] for more information.
>
> * More of R7RS-small has been implemented and Hoot can now run 54 out
> of 57 Scheme benchmarks! [1] (Note that this data is currently just
> from my machine. The official benchmark server will need to be
> capable of running NodeJS 22+, or another V8 distro, before Hoot
> results could be published there.)
>
> Read the full release notes here:
>
> https://spritely.institute/news/guile-hoot-v040-released.html
>
> If you use Guix then it's easy to try out Hoot:
>
> guix pull
> guix shell guile-next guile-hoot
>
> Happy hooting!
This is awesome! I can't wait to start hooting.
Thank you all for the hard work :)
[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 2881 bytes --]
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ANN] Guile Hoot 0.4.0 released!
2024-04-09 14:12 [ANN] Guile Hoot 0.4.0 released! Thompson, David
2024-04-09 14:59 ` Luis Felipe
@ 2024-04-09 22:37 ` Nala Ginrut
2024-04-09 23:17 ` Thompson, David
1 sibling, 1 reply; 4+ messages in thread
From: Nala Ginrut @ 2024-04-09 22:37 UTC (permalink / raw)
To: Thompson, David; +Cc: Guile User
Congrats!
I'm considering to integrate Hoot in Artanis, so that folks may write both
web front/backend with Scheme.
Best regards.
On Tue, Apr 9, 2024, 23:13 Thompson, David <dthompson2@worcester.edu> wrote:
> Hey Guilers!
>
> On behalf of the Spritely Institute, I'm happy to announce that Guile
> Hoot v0.4.0 has been released! Hoot is a Scheme to WebAssembly
> compiler backend for Guile, which means you can now run Scheme in the
> browser for real, tail calls and all.
>
> The highlights of this release are:
>
> * Hoot now supports user-defined modules. Users no longer have to
> stuff their entire program into one file!
>
> * The standard library is now available as a collection of importable
> modules. Hoot provides the R7RS (scheme ...) namespace, as well as
> its own (hoot ...) namespace.
>
> * An example project was added to the source tree in Git to serve as
> an easy starting point for new Hoot projects. This example project
> also ships with our official release tarballs. See the template's
> README [0] for more information.
>
> * More of R7RS-small has been implemented and Hoot can now run 54 out
> of 57 Scheme benchmarks! [1] (Note that this data is currently just
> from my machine. The official benchmark server will need to be
> capable of running NodeJS 22+, or another V8 distro, before Hoot
> results could be published there.)
>
> Read the full release notes here:
>
> https://spritely.institute/news/guile-hoot-v040-released.html
>
> If you use Guix then it's easy to try out Hoot:
>
> guix pull
> guix shell guile-next guile-hoot
>
> Happy hooting!
>
> - Dave
>
> [0]
> https://gitlab.com/spritely/guile-hoot/-/blob/main/examples/project-template/README.md?ref_type=heads
>
> [1] https://ecraven.github.io/r7rs-benchmarks
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ANN] Guile Hoot 0.4.0 released!
2024-04-09 22:37 ` Nala Ginrut
@ 2024-04-09 23:17 ` Thompson, David
0 siblings, 0 replies; 4+ messages in thread
From: Thompson, David @ 2024-04-09 23:17 UTC (permalink / raw)
To: Nala Ginrut; +Cc: Guile User
On Tue, Apr 9, 2024, 6:37 PM Nala Ginrut <nalaginrut@gmail.com> wrote:
> Congrats!
> I'm considering to integrate Hoot in Artanis, so that folks may write both
> web front/backend with Scheme.
>
Whoa, awesome! That would be so cool. Share updates if/when you have them.
:)
- Dave
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-04-09 23:17 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-09 14:12 [ANN] Guile Hoot 0.4.0 released! Thompson, David
2024-04-09 14:59 ` Luis Felipe
2024-04-09 22:37 ` Nala Ginrut
2024-04-09 23:17 ` Thompson, David
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).