Email list hosting service & mailing list manager

A quick guide to Scheme implementations erkin (03 Feb 2020 22:41 UTC)
Re: A quick guide to Scheme implementations Duy Nguyen (03 Feb 2020 23:50 UTC)
Re: A quick guide to Scheme implementations Lassi Kortela (04 Feb 2020 10:49 UTC)
Re: A quick guide to Scheme implementations Erkin Batu Altunbaş (04 Feb 2020 16:59 UTC)
Re: A quick guide to Scheme implementations Amirouche Boubekki (04 Feb 2020 07:54 UTC)
Re: A quick guide to Scheme implementations Göran Weinholt (04 Feb 2020 08:04 UTC)
Re: A quick guide to Scheme implementations Lassi Kortela (04 Feb 2020 11:31 UTC)
Re: A quick guide to Scheme implementations erkin (04 Feb 2020 16:51 UTC)
Re: A quick guide to Scheme implementations Lassi Kortela (04 Feb 2020 17:01 UTC)
Re: A quick guide to Scheme implementations Erkin Batu Altunbaş (04 Feb 2020 21:43 UTC)

Re: A quick guide to Scheme implementations Lassi Kortela 04 Feb 2020 10:49 UTC

> I think latest Guile version supports r7rs now (or most of it). I'm
> not a Guile user so I can't really confirm.

Guile 3 supports R7RS:

$ docker run -it weinholt/guile:3.0 guile --r7rs
GNU Guile 3.0.0
Copyright (C) 1995-2020 Free Software Foundation, Inc.

[...]
xxxxxx@(guile-user)> (define-library (example) (import (scheme base))
(begin (define (hello) "Hello world")))
xxxxxx@(example)> (hello)
$1 = "Hello world"
xxxxxx@(example)>