Hi :)
On Sun 26 Jan 2020 07:19, William ML Leslie
writes:
> On Sun, 26 Jan 2020, 4:46 pm William ML Leslie,
> wrote:
> On Sun, 26 Jan 2020, 8:20 am John Paul Adrian Glaubitz,
> wrote:
>
> > I noticed that you recently purged hppa support from guile [1].
>
> This change does not remove hp
> Initially in Guile I planned to use GNU Lightning, in part because of
> its great platform support. However it turned out to not be the right
> thing, and reluctantly I ended up doing something that was more like a
> rewrite than a refactor.
[...]
> If someone would like to write an IA64 backend
This does not look right (for guile 3.0.0)
-
;b.scm:
(define-module (b)
#:export (%f g))
(define %f 1)
(define (g)
(pk %f))
-
;c:scm:
(define-module (c)
#:use-module (b)
#:export (f))
(define (f x)
(set! %f x)
(g))
---
On Mon, Jan 27, 2020 at 12:30:15PM -0500, Stefan Monnier wrote:
> > Initially in Guile I planned to use GNU Lightning, in part because of
> > its great platform support. However it turned out to not be the right
> > thing, and reluctantly I ended up doing something that was more like a
> > rewrite