Re: What is the status of guile-gnome, or gtk\guile?

2020-06-07 Thread Dale Mellor
On Sun, 2020-06-07 at 10:39 +0200, Zelphir Kaltstahl wrote: > This is what I have been looking up just yesterday as well! > > I remember some e-mails here on the Guile user list definitely later > than 2017. However, they also did not turn up on my search engine search > yesterday. > > I also won

What is the status of guile-gnome, or gtk\guile?

2020-06-06 Thread Dale Mellor
As far as I can tell nothing has happened since 2017. Has the project died?

Help: equivalent syntax-case to defmacro

2020-05-05 Thread Dale Mellor
;no such option") (display exception:no-such-option) and I would like to know how the equivalent with define-syntax... syntax-case would look. Thanks, Dale

Re: guile and XML (mixp)

2006-11-28 Thread Dale P. Smith
fault. I don't think it was ever intended to be generally useful. Long term, Guile should probably have syntax-case macros available without having to resort to use-syntax. -Dale -- Dale P. Smith ___ Guile-user mailing list Guile-user@gnu.org http://lists.gnu.org/mailman/listinfo/guile-user

Re: newbie: read, load and eval

2006-10-22 Thread dale
Mike Gran writes: >> >> Let's say you had a file "a.data" that contained >> >> ("This" "is" "a" "test") >> >> Note that there is no initial quote. >> >> ... >> >> One step up could be >> >> (call-with-input-file "a.data" (lambda (p) (display (read p Perfect! I was basically making a

newbie: read, load and eval

2006-10-21 Thread dale
This seems like the simplest thing which guile ought to be able to do in a snap, but I can't for the life of me work out how to do it. I have a file called a.data which contains some data as a scheme expression, such as '("This" "is" "a" "test") and I want to use these data in a program, so I wa